~starkingdoms/starkingdoms

ref: ef1f6ca44adf93a7c289bb9a010c8f32590bf8d8 starkingdoms/server/Cargo.toml -rw-r--r-- 623 bytes
ef1f6ca4 — ghostlyzsh modules spawn in on load 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.0.1"
edition = "2021"
license = "AGPL-3"

[dependencies]
bevy = { version = "0.12", default-features = false }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
bevy_twite = { git = "https://gitlab.com/ghostlyzsh/twite.git" }
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" }

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