-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
67 lines (62 loc) · 1.63 KB
/
Cargo.toml
File metadata and controls
67 lines (62 loc) · 1.63 KB
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
56
57
58
59
60
61
62
63
64
65
66
67
[package]
name = "gameserver-rs"
version = "0.1.0"
edition = "2024"
[dependencies]
walkdir = { version = "2.5.0"}
k8s-openapi = { version = "0.24.0", features = ["v1_28"], optional = true }
bollard = { version = "0.19.0-rc1", optional = true }
kube = { version = "0.99.0", optional = true }
serde_yaml = { version = "0.9.34", optional = true }
tar = { version = "0.4", optional = true }
tokio = { version = "1", features = ["full"] }
futures-util = "0.3"
tokio-util = { version = "0.7", features = ["codec"] }
http-body-util = "0.1.3"
anyhow = "1.0.97"
axum = { version = "0.8", features = ["macros", "ws", "multipart"] }
httpc-test = { version = "0.1.10", features = ["colored", "colored_json"] }
serde = { version = "1.0.219", features = ["serde_derive"] }
serde_json = "1.0.140"
tower-http = { version = "0.6.2", features = ["add-extension", "cors", "fs"] }
http-body = "1.0.1"
mime_guess = "2.0.5"
jsonwebtoken = "9.3.1"
bcrypt = "0.17.0"
chrono = "0.4.41"
axum-login = "0.17.0"
async-trait = "0.1.88"
sqlx = { version = "0.8.6", optional = true, features = ["postgres", "runtime-tokio", "runtime-tokio-native-tls"] }
urlencoding = "2.1.3"
serial_test = "3.2.0"
log = "0.4.27"
tracing-subscriber = "0.3.19"
tracing = "0.1.41"
serde_urlencoded = "0.7.1"
file-transfer-system = "0.3.1"
sysinfo = "0.37.0"
env = "1.0.1"
rcon = { version = "0.6.0", features = ["rt-tokio"] }
bytes = "1.11.0"
[features]
default = []
database = []
docker = [
"bollard",
"sqlx"
]
full-stack = [
"kube",
"k8s-openapi",
"bollard",
"tar",
"serde_yaml",
"sqlx"
]
[workspace]
members = [
"gameserver"
]
[[bin]]
name = "gameserver-rs"
path = "src/main.rs"