1
0
Fork 0
mirror of https://github.com/containers/youki synced 2024-05-05 07:06:14 +02:00
youki/crates/youki/Cargo.toml
dependabot[bot] 82ebdc7cae
chore(deps): bump anyhow from 1.0.58 to 1.0.60
Bumps [anyhow](https://github.com/dtolnay/anyhow) from 1.0.58 to 1.0.60.
- [Release notes](https://github.com/dtolnay/anyhow/releases)
- [Commits](https://github.com/dtolnay/anyhow/compare/1.0.58...1.0.60)

---
updated-dependencies:
- dependency-name: anyhow
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-08-09 10:14:49 +00:00

42 lines
1.1 KiB
INI

[package]
name = "youki"
version = "0.0.3"
description = "A container runtime written in Rust"
license-file = "../../LICENSE"
repository = "https://github.com/containers/youki"
homepage = "https://containers.github.io/youki"
readme = "../../README.md"
authors = ["youki team"]
edition = "2021"
build = "build.rs"
keywords = ["youki", "container"]
[dependencies.clap]
version = "3.2.16"
default-features = false
features = ["std", "suggestions", "derive", "cargo"]
[dependencies]
anyhow = "1.0.60"
chrono = { version="0.4", features = ["serde"] }
libcgroups = { version = "0.0.3", path = "../libcgroups" }
libcontainer = { version = "0.0.3", path = "../libcontainer" }
liboci-cli = { version = "0.0.3", path = "../liboci-cli" }
log = { version = "0.4", features = ["std"]}
nix = "0.24.2"
oci-spec = { version = "0.5.7", features = ["runtime"] }
once_cell = "1.13.0"
pentacle = "1.0.0"
procfs = "0.14.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tabwriter = "1"
clap_complete = "3.2.3"
[dev-dependencies]
serial_test = "0.8.0"
[build-dependencies]
anyhow = "1.0.60"
vergen = "7.3"