-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
74 lines (69 loc) · 2.3 KB
/
Copy pathCargo.toml
File metadata and controls
74 lines (69 loc) · 2.3 KB
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
[workspace]
resolver = "2"
members = ["crates/*"]
[workspace.package]
edition = "2024"
license = "MIT"
repository = "https://github.com/a24films/puffgres"
[workspace.lints.clippy]
cast_possible_truncation = "warn"
cast_sign_loss = "warn"
cast_possible_wrap = "warn"
[workspace.lints.rust]
unsafe_code = "forbid"
[profile.release]
lto = true
codegen-units = 1
strip = true
[workspace.dependencies]
serde = { version = "1.0.228", features = ["derive", "rc"] }
serde_json = "1.0.149"
toml = "1.0.6"
thiserror = "2.0.18"
tokio = { version = "1.50.0" }
tokio-util = "0.7"
tokio-postgres = "0.7.16"
sha2 = "0.10.9"
base64 = "0.22.1"
bytes = "1.11.1"
chrono = { version = "0.4.44" }
uuid = { version = "1.22.0" }
url = "2.5.8"
strum = { version = "0.27.2", features = ["derive"] }
clap = { version = "4", features = ["derive"] }
dialoguer = { version = "0.12", default-features = false }
dotenvy = "0.15"
axum = "0.8"
reqwest = "0.12"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
tracing-opentelemetry = "0.32"
opentelemetry = "0.31"
opentelemetry_sdk = { version = "0.31", features = ["rt-tokio", "logs"] }
opentelemetry-otlp = { version = "0.31", features = ["http-proto", "http-json", "reqwest-blocking-client", "trace", "metrics", "logs"] }
opentelemetry-appender-tracing = "0.31"
diesel = { version = "2.3", features = ["postgres", "chrono"] }
diesel_migrations = "2.3"
async-trait = "0.1"
backon = "1.6.0"
rand = "0.10.0"
fake = { version = "5.1.0", features = ["derive", "uuid", "chrono"] }
derive_more = { version = "2.1.1", features = ["display"] }
config = { path = "crates/config" }
pg = { path = "crates/pg" }
puff = { path = "crates/puff" }
puffgres-core = { path = "crates/core" }
puffgres-debug = { path = "crates/debug" }
replication = { path = "crates/replication" }
state = { path = "crates/state" }
pgwire-replication = "0.2"
rs-puff = { version = "0.1.1", default-features = false, features = ["rustls-tls"] }
tokio-postgres-rustls-improved = { version = "0.16", default-features = false, features = ["ring"] }
rustls = { version = "0.23", features = ["ring"] }
webpki-roots = "1.0"
tokio-stream = { version = "0.1", features = ["sync"] }
proptest = "1.10.0"
tempfile = "3.26.0"
temp-env = "0.3.6"
testcontainers = "0.26.3"
testcontainers-modules = { version = "0.14.0", features = ["postgres"] }