woossh/Cargo.toml

25 lines
569 B
TOML

[package]
name = "woossh"
version = "0.1.0"
edition = "2021"
# 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"
file-descriptors = { version = "0.9.1", optional = true }
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"
[features]
socket-activation = ["dep:file-descriptors"]
[[bin]]
name = "wssh"
path = "src/main.rs"