blob: 905c17c1b502dbf4f065b47c958770ba67822b59 (
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
|
[package]
name = "tor-congestion"
version = "0.5.0"
edition = "2021"
authors = ["The Tor Project, Inc.", "eta <[email protected]>"]
rust-version = "1.65"
license = "MIT OR Apache-2.0"
homepage = "https://gitlab.torproject.org/tpo/core/arti/-/wikis/home"
description = "Implementations of Tor network congestion control algorithms"
keywords = ["tor", "arti", "async"]
categories = ["network-programming"]
repository = "https://gitlab.torproject.org/tpo/core/arti.git/"
[dependencies]
thiserror = "1"
tor-error = { path = "../tor-error", version = "0.5.0" }
tor-netdir = { path = "../tor-netdir", version = "0.9.0" }
tor-units = { path = "../tor-units", version = "0.6.0" }
[features]
full = ["tor-error/full", "tor-netdir/full", "tor-units/full"]
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
|