Cargo.toml 505 B

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