-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
55 lines (50 loc) · 1.44 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
[package]
name = "rust-server-for-multiplayer"
version = "0.1.0"
edition = "2021"
[workspace]
members = [
".",
"libs/libwish",
"libs/signal",
]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
axum = { version = "0.7.4", features = ["multipart", "tracing", "ws"] }
axum-extra = { version = "0.9.3", features = ["query"] }
hyper = { version = "1.3.1", features = ["full"] }
tower-http = { version = "0.5.2", features = ["fs", "auth", "trace", "cors"] }
tokio = { version = "1.32.0", features = ["full"] }
tokio-util = { version = "0.7.10", features = ["codec"] }
futures-util = { version = "0.3", default-features = false }
mime_guess = "2.0.4"
clap = { version = "4.5.1", features = ["derive"] }
rust-embed = { version = "8.4", features = ["axum-ex"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
http = "1.0.0"
http-body = "1.0.0"
http-body-util = "0.1"
env_logger = "0.10"
anyhow = "1.0"
form_urlencoded = "1"
pin-project-lite = "0.2.4"
chrono = "0.4.28"
log = "0.4"
bytes = "1"
lazy_static = "1"
rand = "0.8"
md5 = "0.7.0"
toml = "0.8.10"
base64 = "0.22.1"
tracing = "0.1.40"
prometheus = "0.13.3"
local-ip-address = "0.6.1"
reqwest = { version = "0.11.24", features = [
"rustls-tls",
], default-features = false }
libwish = { path = "libs/libwish" }
libws = { path = "libs/libws" }
utils = { path = "libs/utils" }
signal = { path = "libs/signal" }
webrtc = "0.11.0"