-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
31 lines (28 loc) · 808 Bytes
/
Copy pathCargo.toml
File metadata and controls
31 lines (28 loc) · 808 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
[package]
name = "p2p-transfer"
version = "2.0.0"
edition = "2024"
[[bin]]
name = "p2pt"
path = "src-backend/main.rs"
[profile.release]
strip = true
opt-level = "s"
lto = true
codegen-units = 1
panic = "abort"
[dependencies]
anyhow = "1.0.98"
axum = { version = "0.8.3", features = ["http2"] }
axum-extra = { version = "0.10.1", features = ["typed-header"] }
dotenv = "0.15.0"
mimalloc = "0.1.46"
rand = "0.9.1"
serde = { version = "1.0.219", features = ["derive"] }
serde_json = "1.0.140"
socketioxide = { version = "0.16.2", features = ["tracing"] }
tokio = { version = "1.44.2", features = ["macros", "rt-multi-thread", "signal"] }
tower = "0.5.2"
tower-http = { version = "0.6.2", features = ["compression-full", "decompression-full", "fs", "trace"] }
tracing = "0.1.41"
tracing-subscriber = "0.3.19"