blob: 623fc1f10cac69ba07a3de6058ac60d7341adf95 (
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-log-ratelim"
version = "0.25.0"
authors = ["The Tor Project, Inc."]
edition = "2021"
rust-version = "1.77"
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"
once_cell = "1.18"
thiserror = "2"
tor-error = { path = "../tor-error", version = "0.25.0" }
tor-rtcompat = { path = "../tor-rtcompat", version = "0.25.0" }
tracing = "0.1.36"
weak-table = "0.3.0"
[dev-dependencies]
|