~starkingdoms/starkingdoms

ref: 60668da3c1b468e1d5bdc67e309507e86ab263d0 starkingdoms/server/Cargo.toml -rw-r--r-- 593 bytes
60668da3 — ghostlyzsh Merge branch 'bevy_rewrite' of https://gitlab.com/starkingdoms.tk/starkingdoms.tk into bevy_rewrite 1 year, 11 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
[package]
name = "starkingdoms-server"
version = "0.1.0-alpha1"
edition = "2021"
license = "AGPL-3"

[dependencies]
bevy = { version = "0.12", default-features = false }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
bevy_rapier2d = "0.23.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"
bevy_tungstenite_stk = { version = "0.1", path = "../bevy_tungstenite_stk" }
tikv-jemallocator = "0.5.0"

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