Cargo.toml 436 B

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