doscontainer/Cargo.toml

31 lines
810 B
TOML

[package]
name = "doscontainer"
version = "0.0.3"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
sha2 = "0.10.8"
chrono = "0.4.33"
clap = { version = "4.4.18", features = ["derive"] }
reqwest = { version = "0.11", features = ["blocking","native-tls-vendored"] }
indicatif = "0.17"
serde = { version = "1.0", features = ["derive"] }
serde_yaml = "0.9.25"
tempfile = "3.10.0"
zip = { version = "0.5", default-features = false, features = ["deflate"] }
[dependencies.uuid]
version = "1.7.0"
features = [
"v4", # Lets you generate random UUIDs
]
[profile.release]
strip = true # Automatically strip symbols from the binary.
opt-level = "z" # Optimize for size.
lto = true
codegen-units = 1
panic = "abort"