Skip to content

Commit

Permalink
Expose bumpalo features
Browse files Browse the repository at this point in the history
  • Loading branch information
simnalamburt committed Oct 28, 2024
1 parent 3f63735 commit 9100768
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,19 @@ 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 = [
"collections", # Exists for backward compatibility. Please remove this line at 0.2.0 release.
"bumpalo/default"
]
collections = ["bumpalo/collections"]
boxed = ["bumpalo/boxed"]
allocator_api = ["bumpalo/allocator_api"]
allocator-api2 = ["bumpalo/allocator-api2"]
serde = ["bumpalo/serde"]
std = ["bumpalo/std"]

0 comments on commit 9100768

Please sign in to comment.