blob: 006e43fb5fb484859cb20f59e72cae499b976598 (
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
|
[package]
name = "tor-memquota-cost"
version = "0.43.0"
authors = ["The Tor Project, Inc.", "Ian Jackson <[email protected]>"]
edition = "2024"
rust-version = "1.89"
license = "MIT OR Apache-2.0"
homepage = "https://gitlab.torproject.org/tpo/core/arti/-/wikis/home"
description = "Low-level memory tracking traits, for use by Arti"
keywords = ["tor", "arti"]
categories = ["memory-management"]
repository = "https://gitlab.torproject.org/tpo/core/arti.git/"
[features]
full = ["memquota"]
default = []
memquota = []
[dependencies]
derive-deftly = { version = "~1.11.0", features = ["full", "beta"] }
itertools = "0.14.0"
paste = "1.0.3"
void = "1"
[dev-dependencies]
safelog = { path = "../safelog", version = "0.8.2" }
serde_json = "1.0.50"
[package.metadata.docs.rs]
all-features = true
|