File tree Expand file tree Collapse file tree 5 files changed +545
-9
lines changed Expand file tree Collapse file tree 5 files changed +545
-9
lines changed Original file line number Diff line number Diff line change @@ -11,14 +11,19 @@ repository = "https://github.com/yvt/interlock-rs"
1111
1212[features ]
1313doc_cfg = []
14- std = []
14+ std = [
15+ " stable_deref_trait/std" ,
16+ " thiserror" ,
17+ ]
1518
1619[dependencies ]
1720guard = " 0.5.1" # <https://github.com/rust-lang/rfcs/pull/1303> polyfill
1821futures = { version = " 0.3.16" , default-features = false }
1922pin-utils = " 0.1.0"
2023pin-project = " 1.0.8"
2124pin-cell = " 0.1.1"
25+ stable_deref_trait = { version = " 1.2.0" , default-features = false }
26+ thiserror = { version = " 1.0.28" , optional = true }
2227
2328[dev-dependencies ]
2429quickcheck_macros = " 1.0.0"
Original file line number Diff line number Diff line change 11//! Higher-level synchronization primitives.
2+
3+ pub mod slice;
You can’t perform that action at this time.
0 commit comments