summaryrefslogtreecommitdiff
path: root/crates/tor-log-ratelim/Cargo.toml
blob: 95e41e6f3fba34dd5d628ea5d9d76e5063dacfc3 (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
[package]
name = "tor-log-ratelim"
version = "0.40.0"
authors = ["The Tor Project, Inc."]
edition = "2024"
rust-version = "1.89"
license = "MIT OR Apache-2.0"
homepage = "https://gitlab.torproject.org/tpo/core/arti/-/wikis/home"
description = "Facility for rate-limiting log messages in Arti"
keywords = ["tor", "arti", "async"]
categories = ["asynchronous"]
repository = "https://gitlab.torproject.org/tpo/core/arti.git/"

[features]

default = []
full = ["tor-error/full", "tor-rtcompat/full"]

[dependencies]

futures = "0.3.14"
humantime = "2"
thiserror = "2"
tor-error = { path = "../tor-error", version = "0.40.0" }
tor-rtcompat = { path = "../tor-rtcompat", version = "0.40.0" }
tracing = "0.1.36"
weak-table = "0.3.0"

[dev-dependencies]

[package.metadata.docs.rs]
all-features = true