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
43
44
45
46
|
[package]
name = "tor-rtmock"
version = "0.18.0"
authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"]
edition = "2021"
rust-version = "1.70"
license = "MIT OR Apache-2.0"
homepage = "https://gitlab.torproject.org/tpo/core/arti/-/wikis/home"
description = "Testing mock support for tor-rtcomapt"
keywords = ["tor", "arti", "async", "testing"]
categories = ["asynchronous"]
repository = "https://gitlab.torproject.org/tpo/core/arti.git/"
[dependencies]
amplify = { version = "4", default-features = false, features = ["derive"] }
async-trait = "0.1.54"
backtrace = { version = "0.3.68" }
derive-deftly = "0.10.3"
derive_more = "0.99.17"
educe = "0.4.6"
futures = "0.3.14"
humantime = "2"
itertools = "0.12.0"
pin-project = "1"
priority-queue = "1.3.2"
slotmap = "1.0.6"
strum = { version = "0.26", features = ["derive"] }
thiserror = "1"
tor-async-utils = { version = "0.18.0", path = "../tor-async-utils" }
tor-error = { version = "0.18.0", path = "../tor-error", features = ["tracing"] }
tor-rtcompat = { version = "0.18.0", path = "../tor-rtcompat" }
tracing = "0.1.36"
tracing-test = "0.2.4"
void = "1"
[dev-dependencies]
futures-await-test = "0.3.0"
rand = "0.8"
tor-basic-utils = { path = "../tor-basic-utils", version = "0.18.0" }
tor-rtcompat = { path = "../tor-rtcompat", version = "0.18.0", features = ["tokio", "native-tls"] }
[features]
full = ["tor-rtcompat/full", "tor-error/full", "tor-async-utils/full"]
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
|