Cargo.toml 499 B

123456789101112131415161718192021222324
  1. [package]
  2. name = "thingbuf"
  3. version = "0.1.0"
  4. edition = "2021"
  5. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  6. [features]
  7. std = ["alloc"]
  8. alloc = []
  9. default = ["std"]
  10. [dependencies]
  11. [dev-dependencies]
  12. loom = { version = "0.5", features = ["checkpoint", "futures"] }
  13. # So that we can use `poll_fn` in tests.
  14. futures-util = "0.3"
  15. [profile.test]
  16. opt-level = 3
  17. [patch.crates-io]
  18. loom = { git = "https://github.com/tokio-rs/loom", branch = "master"}