Cargo.toml
1 [package] 2 name = "tor-log-ratelim" 3 version = "0.26.0" 4 authors = ["The Tor Project, Inc."] 5 edition = "2021" 6 rust-version = "1.77" 7 license = "MIT OR Apache-2.0" 8 homepage = "https://gitlab.torproject.org/tpo/core/arti/-/wikis/home" 9 description = "Facility for rate-limiting log messages in Arti" 10 keywords = ["tor", "arti", "async"] 11 categories = ["asynchronous"] 12 repository = "https://gitlab.torproject.org/tpo/core/arti.git/" 13 14 [features] 15 16 default = [] 17 full = ["tor-error/full", "tor-rtcompat/full"] 18 19 [dependencies] 20 21 futures = "0.3.14" 22 humantime = "2" 23 once_cell = "1.18" 24 thiserror = "2" 25 tor-error = { path = "../tor-error", version = "0.26.0" } 26 tor-rtcompat = { path = "../tor-rtcompat", version = "0.26.0" } 27 tracing = "0.1.36" 28 weak-table = "0.3.0" 29 30 [dev-dependencies]