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
|
[package]
name = "arti-bench"
version = "0.17.0"
edition = "2024"
rust-version = "1.91"
authors = ["The Tor Project, Inc.", "eta <[email protected]>"]
license = "MIT OR Apache-2.0"
homepage = "https://gitlab.torproject.org/tpo/core/arti/-/wikis/home"
description = "A simple benchmarking utility for Arti."
keywords = ["tor", "arti"]
categories = ["asynchronous"]
repository = "https://gitlab.torproject.org/tpo/core/arti.git/"
# This crate is only useful for arti development;
# earlier versions of it were published by accident.
publish = false
[dependencies]
anyhow = "1.0.23"
arti = { path = "../arti", version = "2.5.1", features = ["experimental-api"] }
arti-client = { package = "arti-client", path = "../arti-client", version = "0.45.0" }
clap = { version = "4.3.24", features = ["wrap_help"] }
float-ord = "0.3"
fs-mistrust = { path = "../fs-mistrust", version = "0.15.0" }
futures = "0.3.14"
rand = "0.10.1"
serde = { version = "1.0.103", features = ["derive"] }
serde_json = "1.0.50"
tokio = { version = "1.47.1", features = ["full"] }
tokio-socks = "0.5"
tor-config = { path = "../tor-config", version = "0.45.0" }
tor-rtcompat = { path = "../tor-rtcompat", version = "0.45.0", features = ["tokio", "native-tls"] }
tracing = "0.1.36"
tracing-subscriber = { version = "0.3.20", features = ["env-filter"] }
web-time-compat = { version = "0.2.0", path = "../web-time-compat" }
[features]
full = [
"arti/full",
"arti-client/full",
"fs-mistrust/full",
"tor-config/full",
"tor-rtcompat/full",
"web-time-compat/full",
]
[package.metadata.docs.rs]
all-features = true
|