-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathCargo.toml
More file actions
50 lines (46 loc) · 1.19 KB
/
Copy pathCargo.toml
File metadata and controls
50 lines (46 loc) · 1.19 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
[workspace]
resolver = "3"
members = [
"common",
"lobby-server",
"map-server",
"web-server",
"world-server",
]
[workspace.package]
version = "0.1.6"
edition = "2024"
rust-version = "1.95"
license = "AGPL-3.0-or-later"
repository = "https://github.com/swstegall/Garlemald-Server"
[workspace.dependencies]
common = { path = "common" }
tokio = { version = "1", features = ["full"] }
bytes = "1"
byteorder = "1"
flate2 = "1"
thiserror = "2"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
anyhow = "1"
rusqlite = "0.37"
tokio-rusqlite = { version = "0.7", features = ["bundled"] }
toml = "0.8"
md-5 = "0.10"
base64 = "0.22"
clap = { version = "4", features = ["derive"] }
mlua = { version = "0.11", features = ["lua54", "vendored", "send"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
rand = "0.9"
chrono = "0.4"
axum = { version = "0.7", features = ["macros", "tokio", "http1", "form", "query"] }
tower = "0.5"
tower-http = { version = "0.6", features = ["trace"] }
argon2 = "0.5"
http = "1"
percent-encoding = "2"
[profile.release]
lto = "thin"
codegen-units = 1
strip = "symbols" # shrink shipped release binaries (issue #15)