~starkingdoms/starkingdoms

ref: c57cea57b27f5fc7b0a7f3965941159ba9e5c47a starkingdoms/server/Cargo.toml -rw-r--r-- 566 bytes
c57cea57 — core fix 1 year, 8 months ago
                                                                                
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
[package]
name = "starkingdoms-server"
version = "0.1.0-alpha1"
edition = "2021"
license = "AGPL-3"

[dependencies]
bevy = { version = "0.13.1", default-features = false }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
bevy_rapier2d = "0.25.0"
rand = "0.8.5"
tracing-subscriber = "0.3"
starkingdoms-common = { version = "0.1", path = "../starkingdoms-common" }
jwt = "0.16"
sha2 = "0.10"
hmac = "0.12"
hex = "0.4"
tikv-jemallocator = "0.5.0"
crossbeam-channel = "0.5"
tungstenite = "0.21"

[features]
default = []
profiling = ["bevy/trace_tracy"]