-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
71 lines (69 loc) · 1.99 KB
/
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
[package]
name = "sandhole"
version = "0.3.1"
edition = "2021"
rust-version = "1.82.0"
description = "Expose HTTP/SSH/TCP services through SSH port forwarding."
repository = "https://github.com/EpicEric/sandhole"
homepage = "https://sandhole.eric.dev.br/"
license = "MIT"
authors = ["Eric Rodrigues Pires <[email protected]>"]
readme = "README.md"
keywords = ["ssh", "proxy", "tunnel", "hole-punching"]
categories = ["network-programming", "web-programming", "authentication"]
exclude = [".github", "book", "docker-compose-example", "tests/data"]
[dependencies]
anyhow = "1.0.93"
async-trait = "0.1.83"
axum = { version = "0.7.7", default-features = false }
block-id = "0.2.1"
bytes = "1.8.0"
chrono = "0.4.38"
clap = { version = "4.5.20", features = ["derive", "string"] }
crossterm = "0.28.1"
dashmap = "6.1.0"
env_logger = "0.11.5"
hickory-resolver = "0.24.1"
http = "1.1.0"
http-body-util = "0.1.2"
human_bytes = { version = "0.4.3", default-features = false }
humantime = "2.1.0"
hyper = { version = "1.5.0", features = ["full"] }
hyper-util = { version = "0.1", features = ["full"] }
ipnet = "2.10.1"
ipnet-trie = "0.2.0"
itertools = "0.13.0"
log = "0.4.22"
notify = "7.0.0"
openssl = { version = "0.10.68", features = ["vendored"] }
pretty-duration = "0.1.1"
rand = "0.8.5"
rand_chacha = "0.3.1"
rand_seeder = "0.3.0"
ratatui = "0.29.0"
russh = "0.49.2"
russh-keys = "0.49.2"
rustls = "0.23.16"
rustls-acme = "0.12.1"
rustls-platform-verifier = "0.4.0"
rustls-webpki = "0.102.8"
rustrict = { version = "0.7.33", features = ["customize"] }
serde = "1.0.215"
serde_json = "1.0.133"
ssh-key = "0.6.7"
sysinfo = "0.33.0"
thiserror = "2.0.3"
tokio = { version = "1", features = ["full"] }
tokio-rustls = "0.26.0"
tokio-stream = "0.1.16"
tokio-util = "0.7.13"
trie-rs = "0.4.2"
[dev-dependencies]
axum = { version = "0.7.7", features = ["macros", "ws"] }
futures-util = "0.3.31"
insta = { version = "1.41.1", features = ["yaml"] }
mockall = "0.13.0"
regex = "1.11.1"
tokio-tungstenite = "0.25.0"
tower = "0.5.1"
vt100-ctt = "0.16.0"