1
0
mirror of https://github.com/containers/youki synced 2025-11-10 02:48:42 +01:00
youki/experiment/seccomp/Cargo.toml
bells17(Daiki Hayakawa) b17ff0de7e
Update basic_setup.md (#3253)
* Update basic_setup.md

Signed-off-by: bells17 <bells171@gmail.com>

* Edit the commented content

Signed-off-by: bells17 <bells171@gmail.com>

* Standardize format: add "$ " prefix to commands and sudo to systemctl

Signed-off-by: bells17 <bells171@gmail.com>

* Use https://github.com/youki-dev/youki

Signed-off-by: bells17 <bells171@gmail.com>

* Edit the commented content

Signed-off-by: bells17 <bells171@gmail.com>

* Edit the commented content

Signed-off-by: bells17 <bells171@gmail.com>

* Fix command format in docs

Signed-off-by: bells17 <bells171@gmail.com>

---------

Signed-off-by: bells17 <bells171@gmail.com>
2025-10-13 17:31:45 +05:30

27 lines
662 B
INI

[package]
name = "seccomp"
version = "0.0.0"
description = "Library for seccomp"
license = "Apache-2.0"
repository = "https://github.com/youki-dev/youki"
homepage = "https://youki-dev.github.io/youki/"
readme = "README.md"
authors = ["youki team"]
edition = "2024"
autoexamples = true
keywords = ["youki", "container", "seccomp"]
[dependencies]
nix = { version = "0.29.0", features = [
"ioctl",
"socket",
"sched",
"mount",
"dir",
] }
thiserror = "1.0.57"
prctl = "1.0.0"
anyhow = "1.0"
tokio = { version = "1", features = ["full"] }
syscall-numbers = "3.1.1"
syscalls = { version = "0.6.18", features = ["std", "serde", "aarch64", "x86_64"]}