Cargo.toml 565 B

12345678910111213141516171819202122232425262728
  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. rand_core = "=0.1.0"
  15. external = { path = "../external" }
  16. smartlist = { path = "../smartlist" }
  17. tor_allocate = { path = "../tor_allocate" }
  18. tor_log = { path = "../tor_log" }
  19. [dev-dependencies]
  20. rand = { version = "=0.5.0-pre.1", default-features = false }
  21. [features]
  22. testing = ["tor_log/testing"]