-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
28 lines (26 loc) · 764 Bytes
/
Copy pathCargo.toml
File metadata and controls
28 lines (26 loc) · 764 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
[workspace]
members = [
"crates/apdd-core",
"crates/apdd-azure",
"crates/apdd-cli",
]
resolver = "2"
[workspace.package]
version = "0.1.0"
edition = "2021"
authors = ["RayStudio"]
license = "MIT"
repository = "https://github.com/9t29zhmwdh-coder/azure-policy-drift-detector"
[workspace.dependencies]
serde = { version = "1", features = ["derive"] }
serde_json = "1"
tokio = { version = "1", features = ["full"] }
reqwest = { version = "0.12", features = ["json", "rustls-tls"], default-features = false }
clap = { version = "4", features = ["derive"] }
anyhow = "1"
thiserror = "1"
chrono = { version = "0.4", features = ["serde"] }
dotenvy = "0.15"
tabled = "0.15"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }