Cargo.toml 466 B

12345678910111213141516171819202122232425262728293031
  1. [package]
  2. authors = ["The Tor Project"]
  3. version = "0.0.1"
  4. name = "protover"
  5. [features]
  6. testing = ["tor_log/testing"]
  7. [dependencies]
  8. libc = "=0.2.39"
  9. [dependencies.smartlist]
  10. path = "../smartlist"
  11. [dependencies.external]
  12. path = "../external"
  13. [dependencies.tor_util]
  14. path = "../tor_util"
  15. [dependencies.tor_allocate]
  16. path = "../tor_allocate"
  17. [dependencies.tor_log]
  18. path = "../tor_log"
  19. [lib]
  20. name = "protover"
  21. path = "lib.rs"
  22. crate_type = ["rlib", "staticlib"]