Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ publish = false
rustc_version = "0.4.0"

[dev-dependencies]
async-std = { version = "1.9.0", features = ["attributes"] }
async-std = { version = "1.10.0", features = ["attributes"] }
anyhow = "1.0.37"
cap-async-std = { path = "cap-async-std", version = "^0.17.1-alpha.0"}
cap-fs-ext = { path = "cap-fs-ext", version = "^0.17.1-alpha.0"}
Expand Down
3 changes: 2 additions & 1 deletion cap-async-std/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ edition = "2018"

[dependencies]
arf-strings = { version = "0.4.0", optional = true }
async-std = { version = "1.9.0", features = ["attributes"] }
# Enable "unstable" for `spawn_blocking`.
async-std = { version = "1.10.0", features = ["attributes", "unstable"] }
cap-primitives = { path = "../cap-primitives", version = "^0.17.1-alpha.0"}
io-lifetimes = { version = "0.3.0", default-features = false, features = ["async-std"] }
ipnet = "2.3.0"
Expand Down
4 changes: 0 additions & 4 deletions cap-async-std/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,5 @@
This crate provides a capability-based version of [`async-std`]. See the
[toplevel README.md] for more information about capability-based security.

At the moment, `cap-async-std` is a very rudimentary translation of [`cap-std`] to
`async-std`. It hasn't yet been optimized to make effective use of `async`.

[`async-std`]: https://crates.io/crates/async-std
[`cap-std`]: https://github.com/bytecodealliance/cap-std/blob/main/cap-std/README.md
[toplevel README.md]: https://github.com/bytecodealliance/cap-std/blob/main/README.md
Loading