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

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

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ members = [
"crates/sandlock-core",
"crates/sandlock-cli",
"crates/sandlock-ffi",
"crates/sandlock-oci",
]

[workspace.package]
Expand Down
28 changes: 28 additions & 0 deletions crates/sandlock-oci/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
[package]
name = "sandlock-oci"
version.workspace = true
edition.workspace = true
license.workspace = true
repository.workspace = true
homepage.workspace = true
description = "OCI runtime shim for sandlock — namespace-less, Landlock-based sandbox"
readme = "../../README.md"

[[bin]]
name = "sandlock-oci"
path = "src/main.rs"

[dependencies]
sandlock-core = { version = "0.7.0", path = "../sandlock-core" }
anyhow = "1"
clap = { version = "4", features = ["derive"] }
tokio = { version = "1", features = ["rt-multi-thread", "macros"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
libc = "0.2"
oci-spec = { version = "0.7", features = ["runtime"] }
nix = { version = "0.29", features = ["signal", "process"] }

[dev-dependencies]
tempfile = "3"
tokio = { version = "1", features = ["rt-multi-thread", "macros"] }
Loading
Loading