Cargo.toml 509 B

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