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
|
[package]
name = "pt-proxy"
version = "0.1.0"
edition = "2024"
license = "MIT OR Apache-2.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
publish = false
[dependencies]
anyhow = "1.0.72"
clap = { version = "4.3.21", features = ["derive", "wrap_help"] }
fast-socks5 = "1.0.0"
thiserror = "2"
tokio = { version = "1.7", features = ["full"] }
tokio-stream = "0.1.14"
tor-chanmgr = { path = "../../../crates/tor-chanmgr", version = "0.45", features = ["pt-client"] }
tor-linkspec = { path = "../../../crates/tor-linkspec", version = "0.45" }
tor-ptmgr = { path = "../../../crates/tor-ptmgr", version = "0.45", features = [ "experimental-api"] }
tor-rtcompat = { path = "../../../crates/tor-rtcompat", version = "0.45", features = ["tokio", "native-tls"] }
tor-socksproto = { path = "../../../crates/tor-socksproto", version = "0.45" }
tracing-subscriber = "0.3.20"
[features]
full = [
"tor-chanmgr/full",
"tor-linkspec/full",
"tor-ptmgr/full",
"tor-rtcompat/full",
"tor-socksproto/full",
]
|