Cargo.toml 360 B

123456789101112131415161718192021
  1. [package]
  2. authors = ["The Tor Project",
  3. "Isis Lovecruft <isis@torproject.org>"]
  4. name = "crypto"
  5. version = "0.0.1"
  6. publish = false
  7. [lib]
  8. name = "crypto"
  9. path = "lib.rs"
  10. crate_type = ["rlib", "staticlib"]
  11. [dependencies]
  12. libc = "=0.2.39"
  13. digest = "=0.7.2"
  14. [dependencies.external]
  15. path = "../external"
  16. [dependencies.smartlist]
  17. path = "../smartlist"