24 lines
637 B
TOML
24 lines
637 B
TOML
[package]
|
|
name = "woossh"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
license = "GPL-3.0+"
|
|
description = "A websocket tunnel for SSH"
|
|
repository = "https://git.pvv.ntnu.no/oysteikt/woossh"
|
|
|
|
# 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 = { version = "0.21.0", features = ["rustls", "rustls-tls-native-roots"] }
|
|
tungstenite = "0.21.0"
|
|
|
|
[[bin]]
|
|
name = "wssh"
|
|
path = "src/main.rs"
|