~starkingdoms/starkingdoms

ref: b6949834d53aadf53fa99b5f914a3dac09702395 starkingdoms/crates/unified/Cargo.toml -rw-r--r-- 648 bytes
b6949834 — core replication experiment 5 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
26
27
28
29
[package]
name = "starkingdoms"
description = "A game about floating through space"
edition = "2024"
version = "0.1.0"

[dependencies]
bevy = "0.16"
bevy-trait-query = "0.16"

tokio = { version = "1", optional = true, features = ["rt-multi-thread"] }
tokio-tungstenite = { version = "0.26", optional = true }

serde = { version = "1", features = ["derive"] }
serde_json = "1"
typetag = "0.2"
starkingdoms-proc = { path = "../proc" }
inventory = "0.3"

clap = { version = "4", features = ["derive", "cargo"] }

tracing-subscriber = "0.3"

crossbeam-channel = "0.5"

[features]
default = []
server = ["dep:tokio", "dep:tokio-tungstenite"]
client = []