diff options
Diffstat (limited to 'snapshot/Cargo.toml')
-rw-r--r-- | snapshot/Cargo.toml | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/snapshot/Cargo.toml b/snapshot/Cargo.toml new file mode 100644 index 0000000..165ba3c --- /dev/null +++ b/snapshot/Cargo.toml @@ -0,0 +1,27 @@ +[package] +name = "snapshot" +version = "0.0.1" +authors = [ + "metamuffin <metamuffin@disroot.org>", + "heinrich5991 <heinrich5991@gmail.com>", +] +license = "AGPL-3.0-only" + +[dependencies] +buffer = "0.1.9" +common = { git = "https://github.com/heinrich5991/libtw2" } +gamenet_teeworlds_0_5 = { git = "https://github.com/heinrich5991/libtw2", optional = true } +gamenet_teeworlds_0_6 = { git = "https://github.com/heinrich5991/libtw2", optional = true } +gamenet_teeworlds_0_7 = { git = "https://github.com/heinrich5991/libtw2", optional = true } +gamenet_ddnet = { git = "https://github.com/heinrich5991/libtw2", optional = true } +packer = { git = "https://github.com/heinrich5991/libtw2" } +vec_map = "0.8.0" +warn = ">=0.1.1,<0.3.0" + + +[features] +default = ["gamenet_ddnet"] +gamenet_tw_0_5 = ["gamenet_teeworlds_0_5"] +gamenet_tw_0_6 = ["gamenet_teeworlds_0_6"] +gamenet_tw_0_7 = ["gamenet_teeworlds_0_7"] +gamenet_ddnet_0_6 = ["gamenet_ddnet"] |