-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathCargo.toml
More file actions
74 lines (69 loc) · 1.79 KB
/
Cargo.toml
File metadata and controls
74 lines (69 loc) · 1.79 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
[package]
name = "taskbroker"
version = "0.1.0"
# keep edition in sync with .pre-commit-config.yaml
# https://github.com/rust-lang/rustfmt/issues/4485
edition = "2024"
[profile.release]
debug = 1
[dependencies]
anyhow = "1.0.92"
async-trait = "0.1"
bytes = "1.11.1"
chrono = { version = "0.4.26" }
clap = { version = "4.5.20", features = ["derive"] }
derive_builder = "0.20.2"
elegant-departure = { version = "0.3.1", features = ["tokio"] }
figment = { version = "0.10.19", features = ["env", "yaml", "test"] }
flume = "0.12.0"
futures = "0.3.31"
futures-util = "0.3.31"
hex = "0.4.3"
hmac = "0.12.1"
http = "1.1.0"
http-body-util = "0.1.2"
libsqlite3-sys = "0.30.1"
metrics = "0.24.0"
metrics-exporter-statsd = "0.9.0"
prost = "0.14"
prost-types = "0.14"
rand = "0.8.5"
rdkafka = { version = "0.37.0", features = ["cmake-build", "ssl"] }
sentry = { version = "0.41.0", default-features = false, features = [
# default features, except `release-health` is disabled
"backtrace",
"contexts",
"debug-images",
"panic",
"transport",
# additional features
"tracing",
"logs"
] }
sentry_protos = "0.8.13"
serde = "1.0.214"
serde_yaml = "0.9.34"
sha2 = "0.10.8"
sqlx = { version = "0.8.3", features = ["sqlite", "runtime-tokio", "chrono", "postgres"] }
tokio = { version = "1.43.1", features = ["full"] }
tokio-stream = { version = "0.1.16", features = ["full"] }
tokio-util = "0.7.12"
tonic = "0.14"
tonic-health = "0.14"
tower = "0.5.1"
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.20", features = [
"std",
"env-filter",
"json",
] }
uuid = { version = "1.11.0", features = ["v4"] }
[dev-dependencies]
criterion = { version = "0.5.1", features = ["async_tokio"] }
rstest = "0.23"
tempfile = "3"
[[bench]]
name = "store_bench"
harness = false
[features]
bench-with-mnt-disk = []