[package] name = "quicssh-rs" version = "0.1.5" edition = "2021" license = "MIT" authors = ["oowl "] description = "A simple ssh server based on quic protocol" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] clap = { version = "4.5.4", features = ["derive"] } quinn = "0.10.2" tokio = { version = "1.37.0", features = ["full"] } url = "2.5.0" rustls = { version = "0.21.10", features = ["quic","dangerous_configuration"] } rustls-pemfile = "2.1.2" rcgen = "0.12.1" log = { version = "0.4.21", features = ["std", "serde"] } log4rs = "1.2.0" serde = "1.0.197" toml = "0.8.12" [package.metadata.deb] extended-description = """\ :) quicssh-rs is a QUIC proxy that allows to use QUIC to connect to an SSH server without needing to patch the client or the server.""" section = "net" priority = "optional" suggests = "openssh-server"