Skip to content

Commit

Permalink
Cargo.toml: Make "collections" feature optional
Browse files Browse the repository at this point in the history
  • Loading branch information
simnalamburt committed Nov 4, 2024
1 parent 3f63735 commit 887f27b
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,12 @@ description = "Support for bumpalo in scoped threads & rayon"
bumpalo = "~3"

[dev-dependencies]
bumpalo = { version = "~3", features = ["collections"] }
bumpalo = "~3"
crossbeam-utils = "~0.8"
num_cpus = "~1"
rayon = "~1"

[features]
default = [
"bumpalo/collections", # Exists for backward compatibility. Please remove this line at 0.2.0 release.
]

0 comments on commit 887f27b

Please sign in to comment.