-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
62 lines (50 loc) · 1.27 KB
/
Cargo.toml
File metadata and controls
62 lines (50 loc) · 1.27 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
[package]
name = "LogBurst"
version = "0.1.0"
edition = "2024"
[profile.release]
lto = "fat"
codegen-units = 1
panic = "abort"
[dependencies]
# rt
tokio = { version = "1.44.2", features = ["full"] }
tokio-util = "0.7.14"
# pg
deadpool-postgres = { version = "0.14.1", features = ["rt_tokio_1"] }
tokio-postgres = "0.7.13"
# clickhouse
clickhouse = { version = "0.13.2", features = ["inserter", "time"] }
# .env
dotenvy = "0.15.7"
envy = "0.4.2"
# log
tracing = "0.1.44"
tracing-subscriber = { version = "0.3.22", features = ["env-filter"] }
# rest
serde = { version = "1.0.219", features = ["derive"] }
serde_json = "1.0.140"
thiserror = "2.0.12"
axum = { version = "0.8.3", features = ["macros"] }
anyhow = "1.0.100"
jsonwebtoken = "9.3.1"
validator = { version = "0.20.0", features = ["derive"] }
# time
chrono = { version = "0.4.40", features = [] }
time = { version = "0.3", features = ["serde-human-readable", "macros"] }
# grpc
tonic = "0.13.0"
prost = "0.13.5"
prost-types = "0.13.5"
# crypto
argon2 = { version = "0.6.0-pre.1", features = ["getrandom"] }
blake3 = "1.8.3"
# other
kanal = { version = "0.1.1", features = ["async"] }
arc-swap = "1.8.0"
toml = "0.9.11+spec-1.1.0"
futures = "0.3.31"
async-stream = "0.3.6"
rand = "0.10.0"
[build-dependencies]
tonic-build = "0.13.0"