mirror of
https://github.com/containers/youki
synced 2024-11-23 01:11:58 +01:00
61adda616e
Signed-off-by: utam0k <k0ma@utam0k.jp>
27 lines
589 B
INI
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"
|