-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
23 lines (21 loc) · 781 Bytes
/
Cargo.toml
File metadata and controls
23 lines (21 loc) · 781 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
[workspace]
members = ["duckpipe-core", "duckpipe-pg", "duckpipe-daemon"]
resolver = "2"
[workspace.package]
license = "MIT"
[workspace.dependencies]
thiserror = "2"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
clap = { version = "4", features = ["derive", "env"] }
tokio = { version = "1", features = ["rt", "time", "sync", "macros"] }
tokio-postgres = { version = "0.7", features = ["with-chrono-0_4"] }
duckdb = { version = "=1.10500.0" }
pgwire-replication = { version = "0.2", features = ["tls-rustls"] }
futures-util = "0.3"
rustls = { version = "0.23", default-features = false, features = ["ring"] }
tokio-postgres-rustls = "0.13"
webpki-roots = "0.26"
axum = "0.8"
serde = { version = "1", features = ["derive"] }
serde_json = "1"