Skip to content

Commit

Permalink
use tokio instead of async-std by default
Browse files Browse the repository at this point in the history
  • Loading branch information
cowlicks committed Aug 18, 2024
1 parent 89bdc16 commit 5036133
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ test-log = { version = "0.2.11", default-features = false, features = ["trace"]
tracing-subscriber = { version = "0.3.16", features = ["env-filter", "fmt"] }

[features]
default = ["async-std", "sparse"]
default = ["tokio", "sparse"]
sparse = ["random-access-disk/sparse"]
tokio = ["dep:tokio", "random-access-disk/tokio"]
async-std = ["random-access-disk/async-std"]
Expand Down

0 comments on commit 5036133

Please sign in to comment.