-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
28 lines (26 loc) · 918 Bytes
/
Cargo.toml
File metadata and controls
28 lines (26 loc) · 918 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
28
[package]
name = "sqd-bds"
version = "0.1.0"
edition = "2024"
[dependencies]
anyhow = { workspace = true }
async-stream = { workspace = true }
bytes = { workspace = true }
clap = { workspace = true, features = ["derive"] }
flate2 = { workspace = true }
futures = { workspace = true }
ouroboros = { workspace = true }
scylla = { workspace = true }
serde = { workspace = true, features = ["derive"] }
serde_json = { workspace = true }
sqd-data-client = { path = "../data-client" }
sqd-data-source = { path = "../data-source" }
sqd-primitives = { path = "../primitives", features = ["valuable"] }
tikv-jemallocator = "0.6.0"
tokio = { workspace = true, features = ["full"] }
tracing = { workspace = true, features = ["valuable"] }
tracing-subscriber = { workspace = true, features = ["env-filter", "json", "valuable"] }
url = { workspace = true }
uuid = { workspace = true, features = ["v7"] }
[lints]
workspace = true