aboutsummaryrefslogtreecommitdiff
path: root/crates/tor-rtmock/Cargo.toml
blob: 87bd3e1171eb98640f89618efe72b5457351669f (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
43
44
45
46
47
48
49
50
51
52
53
54
55
[package]
name = "tor-rtmock"
version = "0.45.0"
authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"]
edition = "2024"
rust-version = "1.91"
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"] }
assert_matches = "1.5.0"
async-trait = "0.1.54"
derive-deftly = { version = "~1.11.4", features = ["full", "beta"] }
derive_more = { version = "2.0.1", features = ["full"] }
educe = "0.4.22"
futures = "0.3.14"
humantime = "2"
itertools = "0.15.0"
oneshot-fused-workaround = { path = "../oneshot-fused-workaround", version = "0.7.0" }
pin-project = "1"
priority-queue = "2.0.3"
slotmap-careful = { path = "../slotmap-careful", version = "0.8.0" }
strum = { version = "0.28.0", features = ["derive"] }
thiserror = "2"
tor-error = { version = "0.45.0", path = "../tor-error", features = ["tracing"] }
tor-general-addr = { version = "0.45.0", path = "../tor-general-addr" }
tor-rtcompat = { version = "0.45.0", path = "../tor-rtcompat" }
tracing = "0.1.36"
tracing-test = "0.2.4"
void = "1"
web-time-compat = { version = "0.2.0", path = "../web-time-compat" }

[dev-dependencies]
futures-await-test = "0.3.0"
rand = "0.10.1"
tor-basic-utils = { path = "../tor-basic-utils", version = "0.45.0" }
tor-general-addr = { path = "../tor-general-addr", version = "0.45.0" }
tor-rtcompat = { path = "../tor-rtcompat", version = "0.45.0", features = ["tokio", "native-tls"] }

[features]
full = [
    "tor-rtcompat/full",
    "tor-error/full",
    "oneshot-fused-workaround/full",
    "slotmap-careful/full",
    "tor-general-addr/full",
    "web-time-compat/full",
]
[package.metadata.docs.rs]
all-features = true