summaryrefslogtreecommitdiff
path: root/crates/tor-memquota/Cargo.toml
blob: 45b465acc17390d7de8ecbc4f722f18999bab8d9 (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
[package]
name = "tor-memquota"
version = "0.20.0"
authors = ["The Tor Project, Inc.", "Ian Jackson <[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 = "Memory use tracking and quota utilities, used by Tor software"
keywords = ["tor", "arti"]
categories = ["memory-management"]
repository = "https://gitlab.torproject.org/tpo/core/arti.git/"

[dependencies]
derive-deftly = "0.13.0"
derive_builder = { version = "0.11.2", package = "derive_builder_fork_arti" }
derive_more = "0.99.17"
educe = "0.4.6"
futures = "0.3.14"
serde = { version = "1.0.103", features = ["derive"] }
slotmap = "1.0.6"
static_assertions = "1"
thiserror = "1"
tor-config = { path = "../tor-config", version = "0.20.0" }
tor-error = { path = "../tor-error", version = "0.20.0", features = ["tracing"] }
tor-log-ratelim = { path = "../tor-log-ratelim", version = "0.20.0" }
tor-rtcompat = { version = "0.20.0", path = "../tor-rtcompat" }
tracing = "0.1.36"
void = "1"

[dev-dependencies]
itertools = "0.13.0"
rand = "0.8"
tor-basic-utils = { path = "../tor-basic-utils", version = "0.20.0" }
tor-rtcompat = { version = "0.20.0", path = "../tor-rtcompat", features = ["tokio", "native-tls"] }
tor-rtmock = { path = "../tor-rtmock", version = "0.20.0" }
tracing-test = "0.2.4"

[features]
full = ["tor-config/full", "tor-error/full", "tor-log-ratelim/full", "tor-rtcompat/full"]