diff options
author | metamuffin <metamuffin@disroot.org> | 2025-02-20 14:50:39 +0100 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2025-02-20 14:50:39 +0100 |
commit | d4c9a59ed41c11bf3edccc37d531da46e4fcd218 (patch) | |
tree | 620e0cb9dd59b2b55682f84c0362723fba01a369 /client/Cargo.toml | |
parent | d39a7d62e7bdc63b2055ad93bf511cdd1e40e69d (diff) | |
download | twclient-d4c9a59ed41c11bf3edccc37d531da46e4fcd218.tar twclient-d4c9a59ed41c11bf3edccc37d531da46e4fcd218.tar.bz2 twclient-d4c9a59ed41c11bf3edccc37d531da46e4fcd218.tar.zst |
can render map
Diffstat (limited to 'client/Cargo.toml')
-rw-r--r-- | client/Cargo.toml | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/client/Cargo.toml b/client/Cargo.toml index 8101167..93c1431 100644 --- a/client/Cargo.toml +++ b/client/Cargo.toml @@ -13,16 +13,26 @@ xdg = "2.5.2" wgpu = "23.0.1" pollster = "0.4.0" winit = "0.30.8" +vek = { version = "0.16.1", default-features = false, features = [ + "bytemuck", + "az", + "rgba", + "std", + "uv", +] } +image = "0.24.9" twgame = { path = "../../twgame/twgame" } twgpu = { path = "../../twgpu/twgpu" } twsnap = { path = "../../twsnap" } +twmap = { path = "../../twmap/twmap" } libtw2-gamenet-ddnet = { path = "../../libtw2/gamenet/ddnet" } libtw2-gamenet-common = { path = "../../libtw2/gamenet/common" } libtw2-event-loop = { path = "../../libtw2/event-loop" } libtw2-packer = { path = "../../libtw2/packer" } libtw2-demo = { path = "../../libtw2/demo" } libtw2-snapshot = { path = "../../libtw2/snapshot" } +twstorage = "0.1.1" # pre-rfc3243-libtw2-gamenet-ddnet = "*" # pre-rfc3243-libtw2-gamenet-common = "*" |