mirror of
https://github.com/kata-containers/kata-containers.git
synced 2026-07-25 22:49:59 +00:00
- 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>
32 lines
862 B
TOML
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 }
|