Skip to content

Commit

Permalink
fix no_std (after futures-buffered accepts conradludgate/futures-buff…
Browse files Browse the repository at this point in the history
  • Loading branch information
Easyoakland committed Oct 18, 2024
1 parent bfbe99c commit fc9ad5e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,13 @@ harness = false

[features]
default = ["std"]
std = ["alloc"]
alloc = ["dep:fixedbitset", "dep:slab", "dep:smallvec"]
std = ["alloc", "futures-lite/std"]
alloc = ["dep:fixedbitset", "dep:slab", "dep:smallvec", "futures-lite/alloc"]

[dependencies]
fixedbitset = { version = "0.5.7", default-features = false, optional = true }
futures-core = { version = "0.3", default-features = false }
futures-lite = "1.12.0"
futures-lite = { version = "1.12.0", default-features = false }
pin-project = "1.0.8"
slab = { version = "0.4.8", optional = true }
smallvec = { version = "1.11.0", optional = true }
Expand Down

0 comments on commit fc9ad5e

Please sign in to comment.