2024-03-07 04:07:11 +03:00
|
|
|
[package]
|
|
|
|
name = "back"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2024-03-24 16:29:43 +03:00
|
|
|
axum = { version = "0.7.4", features = ["macros"] }
|
2024-03-09 16:44:42 +03:00
|
|
|
axum-server = { version = "0.6.0", features = ["tls-rustls"] }
|
2024-03-24 16:29:43 +03:00
|
|
|
futures-util = "0.3.30"
|
2024-03-09 03:35:17 +03:00
|
|
|
rand = "0.8.5"
|
2024-03-24 16:29:43 +03:00
|
|
|
ringbuf = "0.3.3"
|
2024-04-15 03:38:03 +03:00
|
|
|
rustls-pemfile = "2.1.2"
|
2024-03-07 04:07:11 +03:00
|
|
|
serde = { version = "1.0.197", features = ["derive"] }
|
|
|
|
serde_json = "1.0.114"
|
|
|
|
tokio = { version = "1.36.0", features = ["full"] }
|
2024-04-15 03:38:03 +03:00
|
|
|
tokio-rustls = "0.25.0"
|
|
|
|
tokio-tungstenite = { version = "0.21.0", features = ["__rustls-tls"] }
|
2024-03-18 04:08:14 +03:00
|
|
|
tokio-util = { version = "0.7.10", features = ["full"] }
|
2024-03-07 04:07:11 +03:00
|
|
|
tower-http = { version = "0.5.2", features = ["full"] }
|