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
|
[package]
name = "arti"
version = "0.0.0"
authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"]
edition = "2018"
license = "MIT OR Apache-2.0"
homepage = "https://gitlab.torproject.org/tpo/core/arti/-/wikis/home"
description = "A rust implementation of the Tor privacy tools."
keywords = [ "tor", "arti", "privacy", "anonymity" ]
categories = [ "command-line-utilities", "cryptography" ]
repository="https://gitlab.torproject.org/tpo/core/arti.git/"
[features]
default = [ "tokio" ]
async-std = [ "tor-client/async-std", "tor-rtcompat/async-std" ]
tokio = [ "tor-client/tokio", "tor-rtcompat/tokio" ]
[dependencies]
tor-client = { package="arti-tor-client", path = "../tor-client", version="0.0.0" }
tor-dirmgr = { path="../tor-dirmgr", version="0.0.0" }
tor-rtcompat = { path="../tor-rtcompat", version="0.0.0", default-features=false }
tor-socksproto = { path="../tor-socksproto", version="0.0.0" }
tor-config = { path="../tor-config", version="0.0.0" }
anyhow = "1.0.38"
config = { version = "0.11.0", default-features = false }
futures = "0.3.13"
log = "0.4.14"
serde = { version = "1.0.124", features = ["derive"] }
simple-logging = "2.0.2"
argh = "0.1.4"
|