-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
50 lines (42 loc) · 1.07 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
[package]
name = "lyrebird"
version = "0.1.0"
edition = "2021"
authors = ["Jack Wampler <[email protected]>"]
rust-version = "1.70"
license = "MIT OR Apache-2.0"
description = "Binaries for running pluggable transports"
keywords = ["tor", "censorship", "pluggable", "transports"]
categories = ["network-programming", "cryptography"]
repository = "https://github.com/jmwample/ptrs"
[features]
default = []
debug = ["ptrs/debug", "obfs4/debug"]
[[bin]]
name = "fwd"
path = "src/fwd/main.rs"
test = false
bench = false
[[bin]]
name = "lyrebird"
path = "src/main.rs"
test = false
bench = false
[dependencies]
## internal crates
ptrs = { path="../ptrs", version="0.1.0" }
obfs4 = { path="../obfs4", version="0.1.0-alpha.1" }
# shared deps
# fwd deps
anyhow = "1.0"
clap = { version = "4.5", features = ["derive"]}
fast-socks5 = "0.10.0"
futures = "0.3.31"
safelog = "0.4.2"
thiserror = "2.0.9"
tokio = { version = "1.42", features = ["io-util", "net", "macros", "sync", "signal"] }
tokio-util = "0.7.13"
tracing = "0.1.41"
tracing-subscriber = "0.3.19"
url = "2.5.4"
# lyrebird deps