blob: 046f14a1cc2fa241f9e608a0098bcf83613b599a (
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-events"
version = "0.5.4"
edition = "2021"
rust-version = "1.65"
authors = ["The Tor Project, Inc.", "eta <[email protected]>"]
license = "MIT OR Apache-2.0"
homepage = "https://gitlab.torproject.org/tpo/core/arti/-/wikis/home"
description = "A typed event broadcasting framework for Arti."
keywords = ["tor", "arti"]
categories = ["asynchronous"]
repository = "https://gitlab.torproject.org/tpo/core/arti.git/"
# This crate is not (yet?) used anywhere in Arti.
publish = false
[dependencies]
async-broadcast = "0.5.0"
futures = "0.3.14"
once_cell = "1"
serde = { version = "1.0.103", features = ["derive"] }
thiserror = "1"
tracing = "0.1.36"
[dev-dependencies]
tokio = { version = "1.7", features = ["macros", "rt", "rt-multi-thread", "time"] }
[features]
full = []
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
|