summaryrefslogtreecommitdiff
path: root/crates/tor-events/Cargo.toml
blob: 142ed7112dd7f45bc3b4bc85c9b77c5452b708d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
[package]
name = "tor-events"
version = "0.0.2"
edition = "2018"
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/"

[dependencies]
serde = { version = "1.0.124", features = ["derive"] }
async-broadcast = "0.3.4"
futures = "0.3"
tracing = "0.1"
once_cell = "1.8"
thiserror = "1.0"

[dev-dependencies]
tokio = { version = "1.7.0", features = ["macros", "rt", "rt-multi-thread", "time"] }