blob: bc79de546d16f39a7761197c6f6321da70c8cc99 (
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
|
[package]
name = "tor-log-ratelim"
version = "0.38.0"
authors = ["The Tor Project, Inc."]
edition = "2024"
rust-version = "1.86"
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.38.0" }
tor-rtcompat = { path = "../tor-rtcompat", version = "0.38.0" }
tracing = "0.1.36"
weak-table = "0.3.0"
[dev-dependencies]
|