Cargo.toml 509 B

12345678910111213141516171819202122
  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. crate_type = ["rlib", "staticlib"]
  9. [features]
  10. # We have to define a feature here because doctests don't get cfg(test),
  11. # and we need to disable some C dependencies when running the doctests
  12. # because of the various linker issues. See
  13. # https://github.com/rust-lang/rust/issues/45599
  14. test_linking_hack = []
  15. [dependencies]
  16. libc = "0.2.39"
  17. [dependencies.tor_allocate]
  18. path = "../tor_allocate"