Skip to content
Draft
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
49 changes: 49 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 8 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,14 @@ A collection of utility components that remix wasi:filesystem types and interfac
## Components

- [`chroot`](./components/chroot/)
- [`readonly`](./components/readonly/)
- [`gate`](./components/gate/)
- [`latch-2`](./components/latch-2/)
- [`latch-3`](./components/latch-3/)
- [`latch-4`](./components/latch-4/)
- [`latch-allow`](./components/latch-allow/)
- [`latch-deny`](./components/latch-deny/)
- [`latch-readonly`](./components/latch-readonly/)
- ~~[`readonly`](./components/readonly/)~~ (deprecated, favor gate with readonly latch)
- [`tracing`](./components/tracing/)

## Build
Expand Down
11 changes: 11 additions & 0 deletions components/gate/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
[package]
name = "gate"
version = "0.1.0"
edition = "2021"
license = "Apache-2.0"

[lib]
crate-type = ["cdylib"]

[dependencies]
wit-bindgen = { workspace = true }
3 changes: 3 additions & 0 deletions components/gate/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# `gate`

Filesystem gate access control.
Loading