-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
40 lines (32 loc) · 924 Bytes
/
Copy pathCargo.toml
File metadata and controls
40 lines (32 loc) · 924 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
29
30
31
32
33
34
35
36
37
38
39
40
[workspace]
members = ["tracing-web-console", "example-server"]
resolver = "2"
[workspace.package]
version = "0.2.0"
edition = "2021"
authors = [
"Paul Colin Hennig <8d_fvfmaa-o2wf_79aqig6g2ki6-09ffkeqmyo3d@vindelicum.eu>",
]
license = "AGPL-3.0"
repository = "https://github.com/firstdorsal/tracing-web-console"
[workspace.dependencies]
# Async runtime
tokio = { version = "1", features = ["full"] }
tokio-stream = "0.1"
# Web framework
axum = { version = "0.8.8", features = ["ws"] }
tower = "0.5.2"
tower-http = { version = "0.6.8", features = ["fs", "cors"] }
# Tracing
tracing = "0.1.44"
tracing-subscriber = { version = "0.3.22", features = ["env-filter", "json"] }
# Serialization
serde = { version = "1", features = ["derive"] }
serde_json = "1.0.146"
# Time
chrono = { version = "0.4", features = ["serde"] }
# Embedding assets
include_dir = "0.7"
# Async utilities
futures = "0.3"
futures-util = "0.3"