-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
34 lines (24 loc) · 810 Bytes
/
Cargo.toml
File metadata and controls
34 lines (24 loc) · 810 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
[package]
name = "hermes"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
axum = { version = "0.7.9", features = [ "macros", "ws" ] }
axum-extra = "0.9.6"
sqlx = { version = "=0.8.1", features = [ "runtime-tokio", "sqlite" ] }
tokio = { version = "1.41.1", features = ["full"] }
tokio-tungstenite = "0.24.0"
futures = "0.3.31"
futures-util = "0.3.31"
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
tower-http = { version = "0.6.1", features = ["fs", "trace", "cors"] }
thiserror = "2.0.3"
rand = "0.8.4"
rand_distr = "0.4.3"
urlencoding = "2.1.3"
strum = "0.26.3"
strum_macros = "0.26.3"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"