Skip to content

Commit

Permalink
Fix feature.
Browse files Browse the repository at this point in the history
  • Loading branch information
reitermarkus committed Sep 7, 2022
1 parent 43be119 commit bdb7107
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Cargo.toml
Expand Up @@ -32,13 +32,13 @@ parking_lot_core = { version = "0.9.3", optional = true, default_features = fals
atomic-polyfill = { version = "1", optional = true }

# Uses `critical-section` to implement `once_cell::sync::OnceCell`.
critical-section = { version = "1.1", optional = true }
critical_section = { package = "critical-section", version = "1.1", optional = true }

[dev-dependencies]
lazy_static = "1.0.0"
crossbeam-utils = "0.8.7"
regex = "1.2.0"
critical-section = { version = "1.1", features = ["std"] }
critical_section = { package = "critical-section", version = "1.1", features = ["std"] }

[features]
default = ["std"]
Expand All @@ -56,7 +56,7 @@ sync = []

parking_lot = ["parking_lot_core"]

critical-section = ["dep:critical-section", "sync"]
critical-section = ["critical_section", "sync"]

[[example]]
name = "bench"
Expand Down

0 comments on commit bdb7107

Please sign in to comment.