12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- [package]
- name = "thingbuf"
- version = "0.1.0"
- edition = "2021"
- [features]
- std = ["alloc"]
- alloc = []
- default = ["std"]
- [dependencies]
- [dev-dependencies]
- loom = { version = "0.5.3", features = ["checkpoint", "futures"] }
- tracing-subscriber = { version = "0.3", default-features = false, features = ["std", "fmt"] }
- tracing = { version = "0.1", default-features = false, features = ["std"] }
- futures = "0.3"
- criterion = { version = "0.3.5", features = ["async_tokio"] }
- crossbeam = "0.8.1"
- tokio = { version = "1.14.0", features = ["rt", "rt-multi-thread", "sync", "macros"] }
- async-std = "1"
- [profile.loom]
- inherits = "test"
- lto = true
- opt-level = 3
- [[bench]]
- name = "sync_mpsc"
- harness = false
- [[bench]]
- name = "async_mpsc"
- harness = false
- [patch.crates-io]
- loom = { git = "https://github.com/tokio-rs/loom", branch = "eliza/fix-double-panic-in-drop" }
|