Cargo.toml 521 B

123456789101112131415161718192021222324
  1. [package]
  2. authors = ["The Tor Project"]
  3. name = "tor_util"
  4. version = "0.0.1"
  5. [lib]
  6. name = "tor_util"
  7. path = "lib.rs"
  8. [dependencies.tor_allocate]
  9. path = "../tor_allocate"
  10. [dependencies.tor_log]
  11. path = "../tor_log"
  12. [dependencies]
  13. libc = "=0.2.39"
  14. [features]
  15. # We have to define a feature here because doctests don't get cfg(test),
  16. # and we need to disable some C dependencies when running the doctests
  17. # because of the various linker issues. See
  18. # https://github.com/rust-lang/rust/issues/45599
  19. test_linking_hack = []