2020-11-27 00:20:18 +00:00
|
|
|
[package]
|
|
|
|
|
|
|
|
name = "ptth_relay"
|
2021-04-18 00:26:05 +00:00
|
|
|
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"
|
2023-01-07 00:10:11 +00:00
|
|
|
repository = "https://six-five-six-four.com/git/reactor/ptth"
|
2021-03-21 18:16:29 +00:00
|
|
|
|
2020-11-27 00:20:18 +00:00
|
|
|
[dependencies]
|
|
|
|
|
2022-12-15 23:24:45 +00:00
|
|
|
anyhow = "1.0.66"
|
2021-03-06 21:15:41 +00:00
|
|
|
base64 = "0.13.0"
|
2021-10-02 19:13:46 +00:00
|
|
|
blake3 = "1.0.0"
|
2022-12-15 23:24:45 +00:00
|
|
|
chrono = { version = "0.4.23", features = ["serde"] }
|
2020-12-16 14:57:47 +00:00
|
|
|
clap = "2.33.3"
|
2021-03-21 03:15:01 +00:00
|
|
|
dashmap = "4.0.2"
|
2020-11-27 00:20:18 +00:00
|
|
|
futures = "0.3.7"
|
2021-03-06 21:15:41 +00:00
|
|
|
futures-util = "0.3.8"
|
|
|
|
handlebars = "3.5.3"
|
|
|
|
http = "0.2.3"
|
2022-12-15 23:24:45 +00:00
|
|
|
hyper = { version = "0.14.23", features = ["http1", "http2", "server", "stream", "tcp"] }
|
2020-11-27 00:20:18 +00:00
|
|
|
itertools = "0.9.0"
|
2022-12-15 23:24:45 +00:00
|
|
|
rand = "0.8.5"
|
2021-07-18 17:19:05 +00:00
|
|
|
rmp-serde = "0.15.5"
|
2022-12-15 23:24:45 +00:00
|
|
|
rusty_ulid = "1.0.0"
|
|
|
|
serde = { version = "1.0.150", features = ["derive"] }
|
|
|
|
serde_json = "1.0.89"
|
|
|
|
serde_urlencoded = "0.7.1"
|
|
|
|
thiserror = "1.0.37"
|
|
|
|
tokio = { version = "1.23.0", features = [] }
|
|
|
|
tokio-stream = "0.1.11"
|
|
|
|
toml = "0.5.10"
|
|
|
|
tracing = "0.1.37"
|
2020-11-27 00:20:18 +00:00
|
|
|
tracing-futures = "0.2.4"
|
|
|
|
tracing-subscriber = "0.2.15"
|
|
|
|
|
2021-04-18 01:50:48 +00:00
|
|
|
ptth_core = { path = "../ptth_core", version = "2.0.0" }
|
2022-12-16 15:30:38 +00:00
|
|
|
|
|
|
|
[dependencies.reqwest]
|
|
|
|
version = "0.11.13"
|
|
|
|
default-features = false
|
|
|
|
features = ["stream", "rustls-tls", "hyper-rustls"]
|