-
Notifications
You must be signed in to change notification settings - Fork 9
/
Cargo.toml
29 lines (26 loc) · 920 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
[package]
name = "quicssh-rs"
version = "0.1.5"
edition = "2021"
license = "MIT"
authors = ["oowl <[email protected]>"]
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.20", features = ["derive"] }
quinn = "0.10.2"
tokio = { version = "1.41.0", features = ["full"] }
url = "2.5.2"
rustls = { version = "0.21.12", features = ["quic","dangerous_configuration"] }
rustls-pemfile = "2.1.3"
rcgen = "0.12.1"
log = { version = "0.4.22", features = ["std", "serde"] }
log4rs = "1.2.0"
serde = "1.0.214"
toml = "0.8.19"
[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"