-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
37 lines (34 loc) · 868 Bytes
/
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
[package]
name = "onionpipe"
version = "0.4.0"
edition = "2021"
authors = ["Casey Marshall <[email protected]>"]
license = "MIT OR Apache-2.0"
description = "Onion addresses for anything."
homepage = "https://github.com/cmars/onionpipe-rs/"
repository = "https://github.com/cmars/onionpipe-rs/"
documentation = "https://docs.rs/onionpipe"
readme = "README.md"
[lib]
name = "onionpipe"
path = "src/lib.rs"
[[bin]]
name = "onionpipe"
path = "src/bin/main.rs"
[dependencies]
base64 = "0.20.0"
futures-util = "0.3"
libtor = "47.8.0+0.4.7.x"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tokio = { version = "1", features = ["full"] }
torut = "0.2"
thiserror = "1.0.35"
tempfile = "3"
tokio-socks = "0.5.1"
regex = "1.7.0"
clap = { version = "4.1.4", features = ["env", "derive"] }
nom = "7.1.3"
crypto_box = "0.8.2"
libc = "0.2.142"
dirs = "5.0.0"