woossh/Cargo.toml

22 lines
475 B
TOML
Raw Normal View History

2024-04-29 10:11:14 +02:00
[package]
name = "woossh"
version = "0.1.0"
edition = "2021"
2024-04-29 18:09:15 +02:00
license = "GPL-3.0+"
2024-04-29 10:11:14 +02:00
# 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"