blob: b0333d21295462ff8b0b18a45baba15b390a6e3e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
[package]
name = "pixelcurry"
version = "0.1.0"
edition = "2021"
[dependencies]
sdl2 = { version = "0.37.0", features = ["gfx", "ttf", "mixer"] }
hurrycurry-protocol = { path = "../server/protocol" }
tungstenite = { version = "0.23.0", features = ["rustls-tls-native-roots"] }
serde_json = "1.0.120"
bincode = "2.0.0-rc.3"
log = "0.4.22"
env_logger = "0.11.3"
anyhow = "1.0.86"
clap = { version = "4.5.9", features = ["derive"] }
rustls = { version = "0.23.10", features = ["ring"] }
rand = "0.9.0-alpha.1"
[features]
bundle_sdl2 = ["sdl2/bundled"]
|