summaryrefslogtreecommitdiff
path: root/pixel-client/Cargo.toml
blob: 4831f485b4fdbf93037db3c533c44e66a6b742c1 (plain)
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
[package]
name = "pixelcurry"
version = "0.1.0"
edition = "2021"

[dependencies]
sdl2 = { version = "0.37.0", features = ["gfx", "ttf", "mixer"] }
hurrycurry-protocol = { path = "../server/protocol" }
hurrycurry-client-lib = { path = "../server/client-lib", default-features = false, features = [
    "sync-network",
] }
tungstenite = { version = "0.24.0", features = ["rustls-tls-native-roots"] }
serde_json = "1.0.128"
bincode = "2.0.0-rc.3"
log = "0.4.22"
env_logger = "0.11.5"
anyhow = "1.0.89"
clap = { version = "4.5.18", features = ["derive"] }
rustls = { version = "0.23.13", features = ["ring"] }
rand = "0.9.0-alpha.2"
xdg = "2.5.2"
toml = "0.8.19"
serde = { version = "1.0.210", features = ["derive"] }
users = "0.11.0"

[features]
bundle_sdl2 = ["sdl2/bundled"]