aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
blob: d06d4af6887966cc241211520028180c3ef7d172 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
[package]
name = "webcat"
version = "0.2.0"
description = "netcat for websockets"
authors = ["Martin Fischer <martin@push-f.com>"]
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"