Files
kata-containers/src/runtime-rs/Cargo.toml
stevenhorsman e43a17c2ba runtime-rs: Remove unused crates
- Remove unused crates to reduce our size and the work needed
to do updates
- Also update package.metadata.cargo-machete with some crates
that are incorrectly coming up as unused

Signed-off-by: stevenhorsman <steven@uk.ibm.com>
2026-02-26 09:37:46 +00:00

32 lines
862 B
TOML

[package]
name = "runtime-rs"
version = "0.1.0"
authors = { workspace = true }
description = "Containerd shim runtime for Kata Containers"
keywords = ["kata-containers", "shim"]
repository = "https://github.com/kata-containers/kata-containers.git"
license = { workspace = true }
edition = { workspace = true }
[[bin]]
name = "containerd-shim-kata-v2"
path = "crates/shim/src/bin/main.rs"
[[bin]]
name = "shim-ctl"
path = "crates/shim-ctl/src/main.rs"
[features]
dragonball = ["runtimes/dragonball"]
cloud-hypervisor = ["runtimes/cloud-hypervisor"]
[dependencies]
anyhow = { workspace = true }
containerd-shim-protos = { workspace = true }
go-flag = { workspace = true }
nix = { workspace = true }
tokio = { workspace = true, features = ["rt", "rt-multi-thread"] }
shim = { path = "crates/shim" }
common = { workspace = true }
runtimes = { workspace = true }