-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
35 lines (31 loc) · 1.04 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
[package]
name = "merx"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
tokio-tungstenite = "0.19.0"
futures-channel = "0.3.28"
futures-util = {version = "0.3.28", features = ["sink", "std"] }
tokio = {version = "1.28.1", features = ["full"]}
#tungstenite = { version = "0.19.0" }
url = "2.3.1"
axum = {version = "0.6.18", features = ["ws", "headers"]}
serde = { version = "1.0.163", features = ["derive"] }
serde_derive = "1.0"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
headers = "0.3"
tracing = "0.1"
tower = { version = "0.4", features = ["util"] }
tower-http = { version = "0.4.0", features = ["fs", "trace"] }
futures = "0.3.28"
axum-extra = {version = "0.7.4", features = ["typed-routing"]}
axum-macros = "0.3.7"
reqwest = {version = "0.11.18", features = ["json"]}
log = "0.4.19"
env_logger = "0.10.0"
argh = "0.1.10"
phf = {version = "0.11.2", features = ["macros"]}
serde_json = "1.0.107"
lazy_static = "1.4.0"
chrono = "0.4.31"