-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
40 lines (38 loc) · 1.09 KB
/
Cargo.toml
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
[package]
name = "littlebigcluster"
version = "0.1.0"
edition = "2021"
[dependencies]
tokio = { version = "1.40", features = ["full", "test-util"] }
tokio-util = "0.7"
object_store = "0.11.2"
anyhow = "1.0"
async-channel = "2.3"
fallible-iterator = "0.3.0"
tempfile = "3.13"
num_cpus = "1.16"
uuid = { version = "1.10", features = ["v7", "serde"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
chrono = { version = "0.4", features = ["serde"] }
futures = "0.3"
tracing = "0.1"
bytes = "1.7"
axum = { version = "0.7", features = ["http2", "macros"] }
sqlx = { version = "0.8", features = ["runtime-tokio", "sqlite"] }
hyper = { version = "1.4", features = ["http2", "client"] }
hyper-util = "0.1"
pnet = "0.35"
itertools = "0.13"
parking_lot = "0.12"
either = "1.13"
socket2 = "0.5"
flagset = "0.4"
[dev-dependencies]
rand = "0.8"
clap = { version = "4.5", features = ["derive"] }
tracing-subscriber = { version = "0.3", features = ["ansi"] }
ascii_table = { version = "4.0", features = ["color_codes"] }
colored = "2.1"
test-log = { version = "0.2", features = ["trace"] }
reqwest = "0.12"