summaryrefslogtreecommitdiff
path: root/crates/tor-ptmgr/Cargo.toml
blob: ad5956e1358c4f8c2ddd117ad1ca044141c85cf7 (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
[package]
name = "tor-ptmgr"
version = "0.1.0"
authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"]
edition = "2021"
rust-version = "1.56"
license = "MIT OR Apache-2.0"
homepage = "https://gitlab.torproject.org/tpo/core/arti/-/wikis/home"
description = "Manage a set of pluggable transports to circumvent censorship"
keywords = ["tor", "arti", "censorship"]
categories = ["network-programming", "cryptography"]
repository = "https://gitlab.torproject.org/tpo/core/arti.git/"

[features]
default = ["tor-channel-factory"]
tor-channel-factory = []

[dependencies]
async-trait = "0.1.2"
futures = "0.3.14"
tor-chanmgr = { version = "0.7.0", path = "../tor-chanmgr" }
tor-config = { version = "0.6.0", path = "../tor-config" }
tor-linkspec = { version = "0.5.1", path = "../tor-linkspec" }
tor-rtcompat = { version = "0.7.0", path = "../tor-rtcompat" }

[dev-dependencies]