update-deployment/Cargo.toml

21 lines
538 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]
2023-08-28 22:28:15 +02:00
git2 = { version = "0.18.0" }
clap = "4.4.1"
2023-04-02 23:23:50 +02:00
color-eyre = "0.6.2"
dotenv = "0.15.0"
eyre = "0.6.8"
2023-08-28 22:28:15 +02:00
serde = { version = "1.0.188", features = ["derive"] }
serde_json = "1.0.105"
serde_yaml = "0.9.25"
2023-04-02 23:23:50 +02:00
tempdir = "0.3.7"
2023-08-28 22:28:15 +02:00
tokio = { version = "1.32.0", features = ["full"] }
2023-04-02 23:23:50 +02:00
tracing = { version = "0.1.37", features = ["log"] }
2023-08-28 22:28:15 +02:00
tracing-subscriber = "0.3.17"