diff options
Diffstat (limited to 'pixel-client/Cargo.toml')
-rw-r--r-- | pixel-client/Cargo.toml | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/pixel-client/Cargo.toml b/pixel-client/Cargo.toml new file mode 100644 index 00000000..d7cb336c --- /dev/null +++ b/pixel-client/Cargo.toml @@ -0,0 +1,15 @@ +[package] +name = "light-client" +version = "0.1.0" +edition = "2021" + +[dependencies] +sdl2 = { version = "0.37.0", features = ["image", "ttf"] } +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"] } |