Cargo.toml 474 B

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