-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
49 lines (47 loc) · 1.41 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
41
42
43
44
45
46
47
48
49
[package]
name = "ecosystem"
version = "0.1.0"
authors = ["okqin <[email protected]>"]
publish = false
edition = "2021"
[dependencies]
anyhow = "1.0.86"
chrono = { version = "0.4.38", features = ["serde"] }
once_cell = "1.19.0"
opentelemetry = "0.23.0"
opentelemetry-otlp = { version = "0.16.0", features = ["tonic"] }
opentelemetry-semantic-conventions = "0.15.0"
opentelemetry_sdk = { version = "0.23.0", features = ["rt-tokio"] }
serde = { version = "1.0.203", features = ["derive"] }
serde_with = "3.9.0"
snafu = "0.8.3"
sqlx = { version = "0.8.0", features = ["postgres", "runtime-tokio", "tls-rustls"] }
thiserror = "1.0.61"
tokio-util = { version = "0.7.11", features = ["codec"] }
tracing = "0.1.40"
tracing-appender = "0.2.3"
tracing-opentelemetry = "0.24.0"
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
[dev-dependencies]
axum = { version = "0.7.5", features = ["http2", "query", "tracing"] }
base64 = "0.22.1"
bytes = "1.6.1"
chrono = "0.4.38"
console-subscriber = "0.4.0"
dashmap = "6.0.1"
derive_builder = "0.20.0"
derive_more = { version = "=1.0.0-beta.6", features = ["full"] }
futures = "0.3.30"
http = "1.1.0"
nanoid = "0.4.0"
rand = "0.8.5"
serde = { version = "1.0.203", features = ["derive"] }
serde_json = "1.0.120"
strum = { version = "0.26.3", features = ["derive"] }
tokio = { version = "1.38.0", features = [
"macros",
"rt-multi-thread",
"rt",
"fs",
] }
tokio-stream = "0.1.15"