container-device-interface 0.1.2

CDI (Container Device Interface), is a specification, for container-runtimes, to support third-party devices.
Documentation
[package]
name = "container-device-interface"
version = "0.1.2"
edition = "2021"
license = "Apache-2.0"
description = "CDI (Container Device Interface), is a specification, for container-runtimes, to support third-party devices."
repository = "https://github.com/cncf-tags/container-device-interface-rs"
homepage = "https://github.com/cncf-tags/container-device-interface"
readme = "README.md"
categories = ["command-line-utilities"]
keywords = ["container"]

[lib]
crate-type = ["cdylib", "rlib"]

[[bin]]
name = "cdi" # Name of the binary executable
path = "src/bin/cdi.rs" # Path to the source file

[[bin]]
name = "validate" # Name of the binary executable
path = "src/bin/validate.rs" # Path to the source file


# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
oci-spec = { version = "0.8.1", features = ["runtime"] }
anyhow = "1.0"
clap = { version = "4.5.4", features = ["derive"] }
serde_json = "1.0"
jsonschema = "0.33.0"
once_cell = "1.8.0"
notify = "8.0.0"
serde = "1.0.131"
serde_derive = "1.0.131"
libc = "0.2.112"
nix = "0.24.2"
lazy_static = "1.2"
path-clean = "1.0.1"
serde_yaml = "0.9.33"
semver = "1.0.22"
regex = "1.5.4"
const_format = "0.2.32"

[dev-dependencies]
tempfile = "3.1.0"
pretty_assertions = "1.0.0"