summaryrefslogtreecommitdiff
path: root/examples/gsoc2023/obfs4-checker/Cargo.toml
blob: a4bd8ca08b25d7642f62cb1e63c0cafd88da9ca5 (plain)
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
[package]
name = "obfs4-checker"
version = "0.1.0"
edition = "2024"
license = "MIT OR Apache-2.0"
publish = false
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
anyhow = "1.0.72"
arti-client = { path = "../../../crates/arti-client", version = "0.43", features = ["bridge-client", "pt-client", "experimental-api"] }
axum = "0.8.1"
clap = { version = "4.3.21", features = ["derive", "wrap_help"] }
futures = "0.3.28"
serde = "1.0.180"
time = { version = "0.3.47", features = ["serde"] }
tokio = { version = "1.7", features = ["full"] }
tor-chanmgr = { path = "../../../crates/tor-chanmgr", version = "0.43", features = ["pt-client", "experimental-api"] }
tor-error = { path = "../../../crates/tor-error", version = "0.43" }
tor-guardmgr = { path = "../../../crates/tor-guardmgr", version = "0.43", features = ["full"] }
tor-proto = { path = "../../../crates/tor-proto", version = "0.43", features = [] }
tor-rtcompat = { path = "../../../crates/tor-rtcompat", version = "0.43" }
tracing-subscriber = "0.3.20"
web-time-compat = { path = "../../../crates/web-time-compat", version = "0.1.0" }

[features]
full = [
    "arti-client/full",
    "tor-chanmgr/full",
    "tor-error/full",
    "tor-guardmgr/full",
    "tor-proto/full",
    "tor-rtcompat/full",
    "web-time-compat/full",
]