Skip to content

Commit ab5fcbb

Browse files
committed
Update to latest nightly
Fix issue with parking_lot compilation by removing the dependency on the "nightly" feature...
1 parent ca56887 commit ab5fcbb

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

libs/context/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ edition = "2018"
1212
zerogc = { path = "../..", version = "0.2.0-alpha.1" }
1313
once_cell = { version = "1.5", optional = true }
1414
# Concurrency
15-
parking_lot = { version = "0.11", features = ["nightly"], optional = true }
15+
parking_lot = { version = "0.11", optional = true }
1616
crossbeam-utils = { version = "0.8", optional = true }
1717
# Logging
1818
slog = "2.7"

libs/context/src/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
negative_impls, // !Send is much cleaner than `PhantomData<Rc>`
33
untagged_unions, // I want to avoid ManuallyDrop in unions
44
const_fn, // Apparently this feature is unstable???
5+
const_fn_trait_bound, // So generics + const fn are unstable, huh?
56
)]
67
#![cfg_attr(not(feature = "std"), no_std)]
78
//! The implementation of [::zerogc::CollectorContext] that is

libs/simple/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ once_cell = { version = "1.5", optional = true }
1414
# Shared impl
1515
zerogc-context = { path = "../context", version = "0.2.0-alpha.1", default-features = false }
1616
# Concurrency
17-
parking_lot = { version = "0.11", features = ["nightly"], optional = true }
17+
parking_lot = { version = "0.11", optional = true }
1818
# Logging
1919
slog = "2.7"
2020

0 commit comments

Comments
 (0)