Cargo.toml 586 B

123456789101112131415161718192021222324252627
  1. # TODO: Note that this package should be merged into the "crypto" crate after #24659 is merged.
  2. [package]
  3. authors = ["The Tor Project"]
  4. version = "0.0.1"
  5. name = "rand"
  6. publish = false
  7. [features]
  8. testing = ["tor_log/testing"]
  9. [dependencies]
  10. libc = "=0.2.39"
  11. rand_core = "=0.1.0"
  12. external = { path = "../external" }
  13. tor_allocate = { path = "../tor_allocate" }
  14. tor_log = { path = "../tor_log" }
  15. tor_util = { path = "../tor_util" }
  16. [dev-dependencies]
  17. rand = { version = "=0.5.0-pre.1", default-features = false }
  18. [lib]
  19. name = "rand"
  20. path = "lib.rs"
  21. crate_type = ["rlib", "staticlib"]