Cargo.toml 459 B

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