update-deployment/Cargo.toml

21 lines
540 B
TOML
Raw Normal View History

2023-04-02 23:23:50 +02:00
[package]
name = "update-deployment"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2024-01-31 18:10:31 +01:00
git2 = { version = "0.18.1" }
clap = "4.4.18"
2023-04-02 23:23:50 +02:00
color-eyre = "0.6.2"
dotenv = "0.15.0"
2024-01-31 18:10:31 +01:00
eyre = "0.6.12"
serde = { version = "1.0.196", features = ["derive"] }
serde_json = "1.0.113"
serde_yaml = "0.9.31"
2023-04-02 23:23:50 +02:00
tempdir = "0.3.7"
2024-01-31 18:10:31 +01:00
tokio = { version = "1.35.1", features = ["full"] }
tracing = { version = "0.1.40", features = ["log"] }
tracing-subscriber = "0.3.18"