-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
34 lines (31 loc) · 865 Bytes
/
Cargo.toml
File metadata and controls
34 lines (31 loc) · 865 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
[package]
name = "secret-rotator"
version = "0.1.0"
edition = "2021"
authors = ["Kelley Blackmore"]
description = "Automatic secret rotation tool with HashiCorp Vault and AWS Secrets Manager support"
license = "MIT"
[[bin]]
name = "asr"
path = "src/main.rs"
[dependencies]
clap = { version = "4.5", features = ["derive", "env"] }
tokio = { version = "1.40", features = ["full"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
reqwest = { version = "0.12", features = ["json"] }
anyhow = "1.0"
thiserror = "1.0"
chrono = { version = "0.4", features = ["serde"] }
toml = "0.8"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
rand = "0.8"
aws-sdk-secretsmanager = "1.0"
aws-config = "1.0"
aws-sdk-sts = "1.0"
async-trait = "0.1"
tokio-postgres = "0.7"
[dev-dependencies]
mockito = "1.5"
tempfile = "3.12"