-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
42 lines (40 loc) · 1.21 KB
/
Cargo.toml
File metadata and controls
42 lines (40 loc) · 1.21 KB
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
[package]
name = "tor-js-gateway"
version = "0.1.0"
edition = "2024"
rust-version = "1.89"
[dependencies]
# Arti crates (crates.io)
arti-client = { version = "0.40.0", features = ["tokio", "native-tls", "experimental-api"] }
tor-checkable = "0.40.0"
tor-circmgr = "0.40.0"
tor-netdir = "0.40.0"
tor-netdoc = "0.40.0"
tor-rtcompat = { version = "0.40.0", features = ["tokio", "native-tls"] }
tor-consdiff = "0.40.0"
tor-dircommon = "0.40.0"
tor-llcrypto = "0.40.0"
# External
tokio = { version = "1", features = ["full"] }
anyhow = "1"
clap = { version = "4", features = ["derive"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
json5 = "1"
dirs = "6"
rand = "0.9"
humantime = "2"
futures = "0.3"
async-compression = { version = "0.4", features = ["futures-io", "zlib", "xz", "zstd"] }
base64ct = { version = "1", features = ["alloc"] }
sha3 = "0.10"
digest = "0.10"
hex = "0.4"
zip = { version = "2", default-features = false }
brotli = "8"
flate2 = "1"
axum = { version = "0.8", features = ["ws"] }
tower-http = { version = "0.6", features = ["cors"] }
str0m = { git = "https://github.com/algesten/str0m.git", rev = "2436c567" }