1
0
Fork 0
mirror of https://github.com/containers/youki synced 2024-05-10 17:46:15 +02:00

Move seccomp crate to crates

This commit is contained in:
Furisto 2021-10-20 21:32:12 +02:00
parent 610c95c176
commit 62f4dc5029
No known key found for this signature in database
GPG Key ID: 40C5F0E00523478B
5 changed files with 2 additions and 5 deletions

View File

@ -7,8 +7,7 @@ description = "A container runtime written in Rust"
[workspace]
members = [
"crates/*",
"seccomp",
"crates/*"
]
exclude = [
"youki_integration_test",
@ -45,7 +44,7 @@ dbus = "0.9.2"
tabwriter = "1"
fastrand = "1.4.1"
crossbeam-channel = "0.5"
seccomp = { version = "0.1.0", path = "./seccomp" }
seccomp = { version = "0.1.0", path = "./crates/seccomp" }
pentacle = "1.0.0"
path-clean = "0.1.0"

View File

@ -3,8 +3,6 @@ name = "seccomp"
version = "0.1.0"
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
build = "build.rs"
[dependencies]