2025-06-07 20:46:08 -04:00
|
|
|
[package]
|
|
|
|
|
name = "krust"
|
2025-10-15 19:31:32 -04:00
|
|
|
version = "0.0.1"
|
2025-06-07 20:46:08 -04:00
|
|
|
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"
|
2026-01-05 08:19:42 +00:00
|
|
|
reqwest = { version = "0.13", features = ["json", "stream"] }
|
2025-10-15 14:46:18 -04:00
|
|
|
bytes = "1.0"
|
2025-12-22 08:19:06 +00:00
|
|
|
yaml-rust2 = "0.11"
|
2025-06-07 20:46:08 -04:00
|
|
|
tracing = "0.1"
|
|
|
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
2025-06-08 05:03:35 +00:00
|
|
|
dirs = "6.0"
|
2025-09-22 08:53:55 +00:00
|
|
|
toml = "0.9"
|
2025-06-08 09:19:04 -04:00
|
|
|
base64 = "0.22"
|
2025-06-07 20:46:08 -04:00
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
|
tempfile = "3.9"
|
|
|
|
|
assert_cmd = "2.0"
|
|
|
|
|
predicates = "3.0"
|
2025-10-14 22:18:53 -04:00
|
|
|
testscript-rs = "0.2"
|