57 releases (26 breaking)

0.26.1 Sep 29, 2022
0.25.3 Sep 15, 2022
0.25.2 Jun 29, 2022
0.24.2 Mar 16, 2022
0.0.0 Jun 25, 2020

#1296 in Filesystem

Download history 209/week @ 2023-11-20 247/week @ 2023-11-27 225/week @ 2023-12-04 690/week @ 2023-12-11 151/week @ 2023-12-18 32/week @ 2023-12-25 82/week @ 2024-01-01 159/week @ 2024-01-15 111/week @ 2024-01-29 52/week @ 2024-02-05 211/week @ 2024-02-19 247/week @ 2024-02-26 86/week @ 2024-03-04

544 downloads per month
Used in 2 crates (via drawbridge-server)

Apache-2.0…

540KB
11K SLoC

cap-async-std

Capability-based version of `async-std`

Github Actions CI Status crates.io page docs.rs docs

This crate provides a capability-based version of async-std. See the toplevel README.md for more information about capability-based security.


lib.rs:

A capability-based API modeled after async_std.

This corresponds to async_std.

Capability-based APIs represent access to external resources as values which can be passed around between different parts of a program.

Two notable features are the Dir and Pool types:

  • Dir represents an open directory in a filesystem. Instead of opening files by absolute paths or paths relative to the current working directory, files are opened via paths relative to a Dir. The concepts of a process-wide "current working directory" and a single global filesystem namespace are de-emphasized.
  • Pool represents a set of network addresses. Instead of allowing applications to request access to any address and then applying process-wide filtering rules, filtering rules are built into pools which may be passed through the program.

On WASI, use of this library closely reflects the underlying system API, so it avoids compatibility layers.

Dependencies

~7–20MB
~252K SLoC