-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
66 lines (57 loc) · 1.54 KB
/
Cargo.toml
File metadata and controls
66 lines (57 loc) · 1.54 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
[package]
name = "durable"
version = "0.1.0"
edition = "2024"
license = "Apache-2.0"
rust-version = "1.88.0"
[lib]
bench = false
[lints.clippy]
unwrap_used = "deny"
expect_used = "deny"
panic = "deny"
doc_overindented_list_items = "allow"
[dependencies]
tokio = { version = "1", features = ["full"] }
sqlx = { version = "0.9.0-alpha.1", features = ["sqlx-toml", "postgres", "runtime-tokio", "chrono", "tls-rustls", "uuid", "migrate"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
serde_with = "3"
anyhow = "1"
thiserror = "2"
async-trait = "0.1"
chrono = { version = "0.4", features = ["serde"] }
uuid = { version = "1", features = ["v7", "serde"] }
tracing = "0.1"
hostname = "0.4"
rand = "0.9"
futures = "0.3.31"
blake3 = "1.8.2"
# Optional telemetry dependencies
tracing-opentelemetry = { version = "0.32", optional = true }
opentelemetry = { version = "0.31", optional = true }
opentelemetry_sdk = { version = "0.31", optional = true }
metrics = { version = "0.24", optional = true }
[features]
default = []
telemetry = [
"dep:tracing-opentelemetry",
"dep:opentelemetry",
"dep:opentelemetry_sdk",
"dep:metrics",
]
[dev-dependencies]
criterion = { version = "0.5", features = ["async_tokio", "html_reports"] }
tracing-fluent-assertions = "0.3"
metrics-util = { version = "0.18", features = ["debugging"] }
tracing-subscriber = { version = "0.3", features = ["registry"] }
ordered-float = "4"
[[bench]]
name = "throughput"
harness = false
[[bench]]
name = "checkpoint"
harness = false
[[bench]]
name = "concurrency"
harness = false