mirror of
https://github.com/kata-containers/kata-containers.git
synced 2025-08-12 05:12:37 +00:00
agent: move the oci crate to upper libs
Move the oci crate to upper libs thus it can be shared between agent and other rust runtimes. Fixes: #3348 Signed-off-by: Fupan Li <fupan.lfp@antgroup.com>
This commit is contained in:
parent
3339ba90cf
commit
330e3dcc93
@ -5,7 +5,7 @@ authors = ["The Kata Containers community <kata-dev@lists.katacontainers.io>"]
|
|||||||
edition = "2018"
|
edition = "2018"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
oci = { path = "oci" }
|
oci = { path = "../libs/oci" }
|
||||||
rustjail = { path = "rustjail" }
|
rustjail = { path = "rustjail" }
|
||||||
protocols = { path = "protocols" }
|
protocols = { path = "protocols" }
|
||||||
lazy_static = "1.3.0"
|
lazy_static = "1.3.0"
|
||||||
@ -66,7 +66,6 @@ tempfile = "3.1.0"
|
|||||||
|
|
||||||
[workspace]
|
[workspace]
|
||||||
members = [
|
members = [
|
||||||
"oci",
|
|
||||||
"protocols",
|
"protocols",
|
||||||
"rustjail",
|
"rustjail",
|
||||||
]
|
]
|
||||||
|
@ -8,7 +8,7 @@ edition = "2018"
|
|||||||
serde = "1.0.91"
|
serde = "1.0.91"
|
||||||
serde_json = "1.0.39"
|
serde_json = "1.0.39"
|
||||||
serde_derive = "1.0.91"
|
serde_derive = "1.0.91"
|
||||||
oci = { path = "../oci" }
|
oci = { path = "../../libs/oci" }
|
||||||
protocols = { path ="../protocols" }
|
protocols = { path ="../protocols" }
|
||||||
caps = "0.5.0"
|
caps = "0.5.0"
|
||||||
nix = "0.23.0"
|
nix = "0.23.0"
|
||||||
|
@ -12,7 +12,7 @@ edition = "2018"
|
|||||||
[dependencies]
|
[dependencies]
|
||||||
protocols = { path = "../../agent/protocols", features = ["with-serde"] }
|
protocols = { path = "../../agent/protocols", features = ["with-serde"] }
|
||||||
rustjail = { path = "../../agent/rustjail" }
|
rustjail = { path = "../../agent/rustjail" }
|
||||||
oci = { path = "../../agent/oci" }
|
oci = { path = "../../libs/oci" }
|
||||||
|
|
||||||
clap = "2.33.0"
|
clap = "2.33.0"
|
||||||
lazy_static = "1.4.0"
|
lazy_static = "1.4.0"
|
||||||
|
Loading…
Reference in New Issue
Block a user