Cargo.toml 379 B

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