woossh/Cargo.toml

22 lines
475 B
TOML

[package]
name = "woossh"
version = "0.1.0"
edition = "2021"
license = "GPL-3.0+"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.82"
clap = { version = "4.5.4", features = ["derive"] }
env_logger = "0.11.3"
futures-util = "0.3.30"
log = "0.4.21"
tokio = { version = "1.37.0", features = ["full"] }
tokio-tungstenite = "0.21.0"
tungstenite = "0.21.0"
[[bin]]
name = "wssh"
path = "src/main.rs"