Cargo.toml 699 B

1234567891011121314151617181920212223242526272829
  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. build = "../build.rs"
  8. [lib]
  9. name = "crypto"
  10. path = "lib.rs"
  11. crate_type = ["rlib", "staticlib"]
  12. [dependencies]
  13. libc = "=0.2.39"
  14. digest = "=0.7.2"
  15. rand_core = { version = "=0.2.0-pre.0", default-features = false }
  16. external = { path = "../external" }
  17. smartlist = { path = "../smartlist" }
  18. tor_allocate = { path = "../tor_allocate" }
  19. tor_log = { path = "../tor_log" }
  20. [dev-dependencies]
  21. rand = { version = "=0.5.0-pre.2", default-features = false }
  22. rand_core = { version = "=0.2.0-pre.0", default-features = false }
  23. [features]
  24. testing = ["tor_log/testing"]