diff options
| author | metamuffin <metamuffin@disroot.org> | 2024-07-15 00:45:45 +0200 |
|---|---|---|
| committer | metamuffin <metamuffin@disroot.org> | 2024-07-15 00:45:45 +0200 |
| commit | 052e28628eceb112aaadd5e703709c80183d290f (patch) | |
| tree | 665d3a17fa5c16c3561f530c4a22eb4e0e4f8828 /light-client/Cargo.toml | |
| parent | 804f05e5e556fb950292f323d32e5e4fc35d310b (diff) | |
| download | hurrycurry-052e28628eceb112aaadd5e703709c80183d290f.tar hurrycurry-052e28628eceb112aaadd5e703709c80183d290f.tar.bz2 hurrycurry-052e28628eceb112aaadd5e703709c80183d290f.tar.zst | |
create light client crate
Diffstat (limited to 'light-client/Cargo.toml')
| -rw-r--r-- | light-client/Cargo.toml | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/light-client/Cargo.toml b/light-client/Cargo.toml new file mode 100644 index 00000000..a7cb5199 --- /dev/null +++ b/light-client/Cargo.toml @@ -0,0 +1,9 @@ +[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 = "0.23.0" |