-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
28 lines (26 loc) · 906 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
[package]
name = "rusnel"
description = "Rusnel is a fast TCP/UDP tunnel, transported over and encrypted using QUIC protocol. Single executable including both client and server"
version = "0.1.2"
edition = "2021"
license = "Apache-2.0"
repository = "https://github.com/guyte149/Rusnel"
documentation = "https://docs.rs/rusnel"
homepage = "https://github.com/guyte149/Rusnel"
readme = "README.md"
keywords = ["tunnel", "socks", "quic", "rusnel"]
categories = ["network-programming"]
[dependencies]
clap = { version = "4.5.9", features = ["derive", "color", "suggestions", "cargo"] }
quinn = "0.11.2"
tokio = { version = "1.38.1", features = ["full"] }
rcgen = "0.13.1"
rustls = { version = "0.23.11", features = ["ring"] }
tracing = "0.1.40"
tracing-subscriber = "0.3"
serde_json = "1.0.120"
serde = { version = "1.0.*", features = ["derive"] }
anyhow = "1.0.86"
futures = "0.3.31"
[[bin]]
name = "rusnel"