ptth/crates/ptth_server/Cargo.toml

51 lines
1.2 KiB
TOML

[package]
name = "ptth_server"
version = "1.2.1"
authors = ["Trish"]
edition = "2018"
license = "AGPL-3.0"
description = "The server for PTTH"
repository = "https://github.com/ReactorScram/ptth"
categories = ["command-line-utilities", "web-programming::http-server"]
[dependencies]
aho-corasick = "0.7.15"
anyhow = "1.0.38"
arc-swap = "1.2.0"
base64 = "0.13.0"
blake3 = "0.3.7"
chrono = {version = "0.4.19", features = ["serde"]}
futures = "0.3.7"
handlebars = "3.5.1"
heim = { version = "0.1.0-rc.1", features = ["process"] }
http = "0.2.1"
lazy_static = "1.4.0"
percent-encoding = "2.1.0"
pulldown-cmark = "0.8.0"
rand = "0.8.3"
regex = "1.4.1"
reqwest = { version = "0.11.1", features = ["stream"] }
rmp-serde = "0.14.4"
rusty_ulid = "0.10.1"
serde = {version = "1.0.117", features = ["derive"]}
serde_json = "1.0.60"
structopt = "0.3.20"
thiserror = "1.0.24"
tokio = { version = "1.4.0", features = [] }
tokio-stream = "0.1.3"
tracing = "0.1.25"
tracing-futures = "0.2.5"
tracing-subscriber = "0.2.16"
toml = "0.5.7"
uom = "0.30.0"
always_equal = { path = "../always_equal", version = "1.0.0" }
ptth_core = { path = "../ptth_core", version = "1.2.0" }
[dev-dependencies]
maplit = "1.0.2"