From 8b9bcd0d86eaa27dc78b82ea65c9f60dfc7ce621 Mon Sep 17 00:00:00 2001 From: Martin Fischer Date: Sun, 12 Sep 2021 16:04:38 +0200 Subject: initial commit --- Cargo.toml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 Cargo.toml (limited to 'Cargo.toml') diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..cef5659 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,20 @@ +[package] +name = "webcat" +version = "0.1.0" +description = "netcat for websockets" +authors = ["Martin Fischer "] +license = "MIT" +repository = "https://git.push-f.com/webcat" +keywords = ["websocket", "netcat", "cli"] +categories = ["command-line-utilities"] +edition = "2018" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] +anyhow = "1.0.43" +atty = "0.2.14" +futures = "0.3.17" +tokio = { version = "1.11.0", features = ["net", "macros", "time", "rt-multi-thread", "sync"] } +tokio-tungstenite = "0.15.0" +url = "2.2.2" -- cgit v1.2.3