Cargo.toml 261 B

123456789101112131415161718
  1. [package]
  2. name = "tor_log"
  3. version = "0.1.0"
  4. authors = ["The Tor Project"]
  5. [lib]
  6. name = "tor_log"
  7. path = "lib.rs"
  8. crate_type = ["rlib", "staticlib"]
  9. [features]
  10. testing = []
  11. [dependencies]
  12. libc = "0.2.39"
  13. [dependencies.tor_allocate]
  14. path = "../tor_allocate"