File tree Expand file tree Collapse file tree 3 files changed +3
-2
lines changed Expand file tree Collapse file tree 3 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ edition = "2018"
12
12
zerogc = { path = " ../.." , version = " 0.2.0-alpha.1" }
13
13
once_cell = { version = " 1.5" , optional = true }
14
14
# Concurrency
15
- parking_lot = { version = " 0.11" , features = [ " nightly " ], optional = true }
15
+ parking_lot = { version = " 0.11" , optional = true }
16
16
crossbeam-utils = { version = " 0.8" , optional = true }
17
17
# Logging
18
18
slog = " 2.7"
Original file line number Diff line number Diff line change 2
2
negative_impls, // !Send is much cleaner than `PhantomData<Rc>`
3
3
untagged_unions, // I want to avoid ManuallyDrop in unions
4
4
const_fn, // Apparently this feature is unstable???
5
+ const_fn_trait_bound, // So generics + const fn are unstable, huh?
5
6
) ]
6
7
#![ cfg_attr( not( feature = "std" ) , no_std) ]
7
8
//! The implementation of [::zerogc::CollectorContext] that is
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ once_cell = { version = "1.5", optional = true }
14
14
# Shared impl
15
15
zerogc-context = { path = " ../context" , version = " 0.2.0-alpha.1" , default-features = false }
16
16
# Concurrency
17
- parking_lot = { version = " 0.11" , features = [ " nightly " ], optional = true }
17
+ parking_lot = { version = " 0.11" , optional = true }
18
18
# Logging
19
19
slog = " 2.7"
20
20
You can’t perform that action at this time.
0 commit comments