From 7a0d09e5cd0075e2a0d3db4505d7ec77dff35ae0 Mon Sep 17 00:00:00 2001 From: metamuffin Date: Thu, 9 Jun 2022 09:46:00 +0200 Subject: (reset git) --- client/Cargo.toml | 48 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 client/Cargo.toml (limited to 'client/Cargo.toml') diff --git a/client/Cargo.toml b/client/Cargo.toml new file mode 100644 index 0000000..5f14df4 --- /dev/null +++ b/client/Cargo.toml @@ -0,0 +1,48 @@ +[package] +name = "twclient" +version = "0.1.0" +edition = "2021" +authors = [ + "metamuffin ", + "heinrich5991 ", +] +license = "AGPL-3.0-only" + +[dependencies] +socket = { git = "https://github.com/heinrich5991/libtw2" } +datafile = { git = "https://github.com/heinrich5991/libtw2" } +map = { git = "https://github.com/heinrich5991/libtw2" } +net = { git = "https://github.com/heinrich5991/libtw2" } +common = { git = "https://github.com/heinrich5991/libtw2" } +event_loop = { 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 } +logger = { git = "https://github.com/heinrich5991/libtw2" } +packer = { git = "https://github.com/heinrich5991/libtw2" } +# snapshot = { git = "https://github.com/heinrich5991/libtw2" } +snapshot = { path = "../snapshot" } + +ndarray = "0.9.1" +arrayvec = "0.5.2" +clap = "2.31.2" +hexdump = "0.1.1" +itertools = ">=0.3.0,<0.5.0" +log = "0.3.1" +rand = "0.8.3" +tempfile = "2.0.0" +warn = ">=0.1.1,<0.3.0" +env_logger = "0.9.0" +signal-hook = "0.3.14" +lazy_static = "1.4.0" +anyhow = "1.0.57" +crossbeam-channel = "0.5.4" + + +[features] +default = ["gamenet_ddnet_0_6"] +gamenet_0_5 = ["dep:gamenet_teeworlds_0_5", "snapshot/gamenet_teeworlds_0_5"] +gamenet_0_6 = ["dep:gamenet_teeworlds_0_6", "snapshot/gamenet_teeworlds_0_6"] +gamenet_0_7 = ["dep:gamenet_teeworlds_0_7", "snapshot/gamenet_teeworlds_0_7"] +gamenet_ddnet_0_6 = ["dep:gamenet_ddnet", "snapshot/gamenet_ddnet_0_6"] -- cgit v1.2.3-70-g09d2