mirror of
https://github.com/kata-containers/kata-containers.git
synced 2025-04-30 12:44:39 +00:00
runtime-rs: drop dependency on rustc-serialize
We are not using it and it hasn't got any updates for more than five years, leaving open CVEs unresolved. Signed-off-by: Peng Tao <bergwolf@hyper.sh>
This commit is contained in:
parent
cb977c04bd
commit
7fbc883879
7
src/runtime-rs/Cargo.lock
generated
7
src/runtime-rs/Cargo.lock
generated
@ -1842,7 +1842,6 @@ dependencies = [
|
|||||||
"kata-sys-util",
|
"kata-sys-util",
|
||||||
"kata-types",
|
"kata-types",
|
||||||
"libc",
|
"libc",
|
||||||
"rustc-serialize",
|
|
||||||
"safe-path",
|
"safe-path",
|
||||||
"serde",
|
"serde",
|
||||||
"serde_json",
|
"serde_json",
|
||||||
@ -2287,12 +2286,6 @@ version = "0.1.21"
|
|||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "7ef03e0a2b150c7a90d01faf6254c9c48a41e95fb2a8c2ac1c6f0d2b9aefc342"
|
checksum = "7ef03e0a2b150c7a90d01faf6254c9c48a41e95fb2a8c2ac1c6f0d2b9aefc342"
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "rustc-serialize"
|
|
||||||
version = "0.3.24"
|
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
||||||
checksum = "dcf128d1287d2ea9d80910b5f1120d0b8eede3fbf1abe91c40d39ea7d51e6fda"
|
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "rustix"
|
name = "rustix"
|
||||||
version = "0.34.8"
|
version = "0.34.8"
|
||||||
|
@ -11,7 +11,6 @@ anyhow = "^1.0"
|
|||||||
kata-sys-util = { path = "../../../libs/kata-sys-util"}
|
kata-sys-util = { path = "../../../libs/kata-sys-util"}
|
||||||
kata-types = { path = "../../../libs/kata-types" }
|
kata-types = { path = "../../../libs/kata-types" }
|
||||||
libc = "0.2"
|
libc = "0.2"
|
||||||
rustc-serialize = "0.3.24"
|
|
||||||
serde = { version = "1.0.138", features = ["derive"] }
|
serde = { version = "1.0.138", features = ["derive"] }
|
||||||
serde_json = "1.0.82"
|
serde_json = "1.0.82"
|
||||||
safe-path = { path = "../../../libs/safe-path"}
|
safe-path = { path = "../../../libs/safe-path"}
|
||||||
|
Loading…
Reference in New Issue
Block a user