29 lines
673 B
TOML
29 lines
673 B
TOML
|
|
[package]
|
||
|
|
name = "runtime"
|
||
|
|
version = "0.1.0"
|
||
|
|
edition = "2021"
|
||
|
|
rust-version = "1.75"
|
||
|
|
authors = ["Provctl Contributors"]
|
||
|
|
license = "MIT"
|
||
|
|
repository = "https://github.com/provctl"
|
||
|
|
|
||
|
|
description = "Container runtime detection and abstraction"
|
||
|
|
documentation = "https://docs.rs/runtime"
|
||
|
|
keywords = ["runtime", "docker", "container", "detection", "infrastructure"]
|
||
|
|
categories = ["development-tools", "os"]
|
||
|
|
|
||
|
|
[dependencies]
|
||
|
|
serde = { version = "1", features = ["derive"] }
|
||
|
|
serde_json = "1.0"
|
||
|
|
serde_yaml = "0.9"
|
||
|
|
toml = "0.9"
|
||
|
|
thiserror = "2"
|
||
|
|
anyhow = "1"
|
||
|
|
tracing = "0.1"
|
||
|
|
tokio = { version = "1", features = ["full"] }
|
||
|
|
|
||
|
|
[dev-dependencies]
|
||
|
|
proptest = "1"
|
||
|
|
tempfile = "3"
|
||
|
|
mockall = "0.14"
|