59 lines
1.3 KiB
TOML
59 lines
1.3 KiB
TOML
[package]
|
|
|
|
name = "ptth_server"
|
|
version = "2.1.0"
|
|
authors = ["Trish"]
|
|
edition = "2018"
|
|
license = "AGPL-3.0"
|
|
|
|
categories = ["command-line-utilities", "web-programming::http-server"]
|
|
description = "The server for PTTH"
|
|
documentation = "https://docs.rs/ptth_server/"
|
|
repository = "https://github.com/ReactorScram/ptth"
|
|
default-run = "ptth_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"
|
|
http = "0.2.1"
|
|
lazy_static = "1.4.0"
|
|
percent-encoding = "2.1.0"
|
|
pulldown-cmark = { version = "0.8.0", optional = true }
|
|
rand = "0.8.3"
|
|
regex = "1.4.1"
|
|
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"
|
|
|
|
always_equal = { path = "../always_equal", version = "1.0.0" }
|
|
ptth_core = { path = "../ptth_core", version = "2.0.0" }
|
|
|
|
[dependencies.reqwest]
|
|
version = "0.11.1"
|
|
default-features = false
|
|
features = ["stream", "rustls-tls", "hyper-rustls"]
|
|
|
|
[dev-dependencies]
|
|
|
|
maplit = "1.0.2"
|
|
|
|
[features]
|
|
|
|
markdown = ["pulldown-cmark"]
|