Skip to content

Commit

Permalink
Merge pull request #196 from Easyoakland/fix-nostd
Browse files Browse the repository at this point in the history
fix no_std
  • Loading branch information
yoshuawuyts authored Oct 24, 2024
2 parents bfbe99c + 06dd954 commit 9de4079
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,17 +28,17 @@ 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 }
futures-buffered = "0.2.6"
futures-buffered = "0.2.9"

[dev-dependencies]
async-io = "2.3.2"
Expand Down

0 comments on commit 9de4079

Please sign in to comment.