summaryrefslogtreecommitdiff
path: root/crates/arti-client/Cargo.toml
blob: 783e61af068e9336da986de7b1b0a0ac52b63ab1 (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
36
37
38
39
40
41
42
[package]
name = "arti-client"
version = "0.0.1"
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 = "Library for connecting to the Tor network as an anonymous client"
keywords = [ "tor", "arti", "privacy", "anonymity", "networking" ]
categories = [ "network-programming", "cryptography" ]
repository="https://gitlab.torproject.org/tpo/core/arti.git/"

[features]
default = [ "tokio" ]
async-std = [ "tor-rtcompat/async-std" ]
tokio = [ "tor-rtcompat/tokio", "tor-proto/tokio" ]
static = [ "tor-rtcompat/static", "tor-dirmgr/static" ]
experimental-api = []

[dependencies]
tor-circmgr = { path="../tor-circmgr", version = "0.0.1"}
tor-chanmgr = { path="../tor-chanmgr", version = "0.0.1"}
tor-config = { path="../tor-config", version = "0.0.1"}
tor-dirmgr = { path="../tor-dirmgr", version = "0.0.1"}
tor-persist = { path="../tor-persist", version = "0.0.1"}
tor-proto = { path="../tor-proto", version = "0.0.1"}
tor-rtcompat = { path="../tor-rtcompat", version = "0.0.1"}

derive_builder = "0.10.2"
futures = "0.3.13"
tracing = "0.1.26"
serde = { version = "1.0.124", features = ["derive"] }
thiserror = "1.0.24"

[dev-dependencies]
tor-rtcompat = { path="../tor-rtcompat", version = "0.0.1", features=["tokio"] }
tokio-crate = { package = "tokio", version = "1.7.0", features = ["rt", "rt-multi-thread", "io-util", "net", "time", "macros" ] }
hyper = { version = "0.14.13", features = ["http1", "client", "runtime"] }
pin-project = { version = "1.0" }
tokio-util = { version = "0.6", features = ["compat"] }
anyhow = { version = "1.0" }
tracing-subscriber = "0.3.0"