1
0
mirror of https://github.com/containers/youki synced 2024-09-19 18:37:40 +02:00
youki/experiment/seccomp/Cargo.toml
utam0k 61adda616e
seccomp: Add a case for checking arguments
Signed-off-by: utam0k <k0ma@utam0k.jp>
2024-04-29 21:40:22 +09:00

27 lines
589 B
INI

[package]
name = "seccomp"
version = "0.0.0"
description = "Library for seccomp"
license-file = "../../LICENSE"
repository = "https://github.com/containers/youki"
homepage = "https://containers.github.io/youki"
readme = "README.md"
authors = ["youki team"]
edition = "2021"
autoexamples = true
keywords = ["youki", "container", "seccomp"]
[dependencies]
nix = { version = "0.27.1", 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"