ptth/crates/ptth_relay/Cargo.toml

40 lines
873 B
TOML
Raw Normal View History

2020-11-27 00:20:18 +00:00
[package]
name = "ptth_relay"
version = "2.0.0"
2020-11-27 00:20:18 +00:00
authors = ["Trish"]
edition = "2018"
license = "AGPL-3.0"
2021-03-21 18:16:29 +00:00
description = "The PTTH relay"
2020-11-27 00:20:18 +00:00
[dependencies]
anyhow = "1.0.38"
base64 = "0.13.0"
blake3 = "1.0.0"
chrono = { version = "0.4.19", features = ["serde"] }
clap = "2.33.3"
dashmap = "4.0.2"
2020-11-27 00:20:18 +00:00
futures = "0.3.7"
futures-util = "0.3.8"
handlebars = "3.5.3"
http = "0.2.3"
2021-03-21 18:05:17 +00:00
hyper = { version = "0.14.4", features = ["http1", "server", "stream", "tcp"] }
2020-11-27 00:20:18 +00:00
itertools = "0.9.0"
rand = "0.8.3"
rmp-serde = "0.15.5"
rusty_ulid = "0.10.1"
serde = { version = "1.0.117", features = ["derive"] }
serde_json = "1.0.60"
serde_urlencoded = "0.7.0"
2020-11-27 00:20:18 +00:00
thiserror = "1.0.22"
tokio = { version = "1.8.1", features = [] }
tokio-stream = "0.1.3"
2020-11-27 00:20:18 +00:00
toml = "0.5.7"
tracing = "0.1.25"
2020-11-27 00:20:18 +00:00
tracing-futures = "0.2.4"
tracing-subscriber = "0.2.15"
ptth_core = { path = "../ptth_core", version = "2.0.0" }