-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
27 lines (25 loc) · 911 Bytes
/
Cargo.toml
File metadata and controls
27 lines (25 loc) · 911 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
[workspace]
members = ["crates/*"]
resolver = "2"
[workspace.package]
version = "0.5.0"
edition = "2024"
[workspace.dependencies]
dry_run_core = { path = "crates/dry_run_core" }
chrono = { version = "0.4", features = ["serde"] }
clap = { version = "4", features = ["derive", "env"] }
pg_query = "6.1"
regex = "1"
rusqlite = { version = "0.32", features = ["bundled"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
sha2 = "0.10"
sqlx = { version = "0.8", features = ["runtime-tokio", "postgres", "tls-rustls", "chrono"] }
thiserror = "2"
tokio = { version = "1", features = ["full"] }
toml = "0.8"
tracing = "0.1"
reqwest = { version = "0.12", features = ["json", "rustls-tls"], default-features = false }
rmcp = { version = "0.8", features = ["server", "transport-io", "transport-sse-server", "macros"] }
schemars = "1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }