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"
11
11
12
12
[features ]
13
13
doc_cfg = []
14
- std = []
14
+ std = [
15
+ " stable_deref_trait/std" ,
16
+ " thiserror" ,
17
+ ]
15
18
16
19
[dependencies ]
17
20
guard = " 0.5.1" # <https://github.com/rust-lang/rfcs/pull/1303> polyfill
18
21
futures = { version = " 0.3.16" , default-features = false }
19
22
pin-utils = " 0.1.0"
20
23
pin-project = " 1.0.8"
21
24
pin-cell = " 0.1.1"
25
+ stable_deref_trait = { version = " 1.2.0" , default-features = false }
26
+ thiserror = { version = " 1.0.28" , optional = true }
22
27
23
28
[dev-dependencies ]
24
29
quickcheck_macros = " 1.0.0"
Original file line number Diff line number Diff line change 1
1
//! Higher-level synchronization primitives.
2
+
3
+ pub mod slice;
You can’t perform that action at this time.
0 commit comments