2025-06-07 20:46:08 -04:00
|
|
|
[package]
|
|
|
|
|
name = "krust"
|
|
|
|
|
version = "0.1.0"
|
|
|
|
|
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"
|
2025-06-08 22:16:04 -04:00
|
|
|
hyper = { version = "1.0", features = ["full"] }
|
|
|
|
|
hyper-util = { version = "0.1", features = ["full"] }
|
|
|
|
|
http-body-util = "0.1"
|
|
|
|
|
hyper-tls = "0.6"
|
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 05:03:46 +00:00
|
|
|
which = "8.0"
|
2025-06-07 23:13:45 -04:00
|
|
|
tempfile = "3.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"
|
2025-06-08 10:30:41 -04:00
|
|
|
|
|
|
|
|
[[example]]
|
|
|
|
|
name = "auto_auth_demo"
|
|
|
|
|
path = "examples/auto_auth_demo.rs"
|