cuddle/cuddle_cli/Cargo.toml

27 lines
660 B
TOML
Raw Normal View History

2022-08-09 13:23:30 +02:00
[package]
name = "cuddle_cli"
version = "0.1.0"
edition = "2021"
[[bin]]
name = "cuddle"
path = "src/main.rs"
2022-08-09 13:23:30 +02:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2023-06-11 05:23:12 +02:00
anyhow = "1.0.71"
serde = { version = "1.0.164", features = ["derive"] }
serde_yaml = "0.9.21"
walkdir = "2.3.3"
git2 = { version = "0.17.2", features = ["ssh"] }
clap = "4.3.3"
2022-08-10 16:46:56 +02:00
envconfig = "0.10.0"
2023-06-11 05:23:12 +02:00
dirs = "5.0.1"
tracing = "0.1.37"
tracing-subscriber = { version = "0.3.17", features = ["json"] }
log = { version = "0.4.19", features = ["std", "kv_unstable"] }
openssl = { version = "0.10", features = ["vendored"] }
2023-06-11 05:23:12 +02:00
tera = "1.19.0"