1
0
Fork 0
mirror of https://github.com/imjasonh/krust synced 2026-07-08 06:45:32 +00:00
krust/Cargo.toml
dependabot[bot] 9a96a08523
chore(deps): Update reqwest requirement from 0.12 to 0.13
Updates the requirements on [reqwest](https://github.com/seanmonstar/reqwest) to permit the latest version.
- [Release notes](https://github.com/seanmonstar/reqwest/releases)
- [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md)
- [Commits](https://github.com/seanmonstar/reqwest/compare/v0.12.0...v0.13.1)

---
updated-dependencies:
- dependency-name: reqwest
  dependency-version: 0.13.1
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
2026-01-05 08:19:42 +00:00

37 lines
987 B
TOML

[package]
name = "krust"
version = "0.0.1"
edition = "2021"
authors = ["Jason Hall <imjasonh@gmail.com>"]
description = "A container image build tool for Rust applications"
license = "MIT OR Apache-2.0"
repository = "https://github.com/imjasonh/krust"
keywords = ["container", "docker", "oci", "build", "rust"]
categories = ["command-line-utilities", "development-tools"]
[dependencies]
clap = { version = "4.5", features = ["derive", "env"] }
tokio = { version = "1.35", features = ["full"] }
anyhow = "1.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
sha256 = "1.5"
chrono = "0.4"
tar = "0.4"
flate2 = "1.0"
reqwest = { version = "0.13", features = ["json", "stream"] }
bytes = "1.0"
yaml-rust2 = "0.10"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
dirs = "6.0"
toml = "0.9"
which = "8.0"
tempfile = "3.9"
base64 = "0.22"
[dev-dependencies]
tempfile = "3.9"
assert_cmd = "2.0"
predicates = "3.0"
testscript-rs = "0.2"