Cargo.toml 661 B

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