Cargo.toml 431 B

123456789101112131415161718
  1. [package]
  2. authors = ["The Tor Project"]
  3. version = "0.0.1"
  4. name = "tor_allocate"
  5. [dependencies]
  6. libc = "=0.2.39"
  7. [lib]
  8. name = "tor_allocate"
  9. path = "lib.rs"
  10. [features]
  11. # We have to define a feature here because doctests don't get cfg(test),
  12. # and we need to disable some C dependencies when running the doctests
  13. # because of the various linker issues. See
  14. # https://github.com/rust-lang/rust/issues/45599
  15. test_linking_hack = []