2020-11-27 00:50:22 +00:00
|
|
|
[package]
|
|
|
|
|
|
|
|
name = "ptth_server"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Trish"]
|
|
|
|
edition = "2018"
|
|
|
|
license = "AGPL-3.0"
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
|
|
|
|
aho-corasick = "0.7.14"
|
2020-11-29 21:38:23 +00:00
|
|
|
anyhow = "1.0.34"
|
2020-11-27 00:50:22 +00:00
|
|
|
base64 = "0.12.3"
|
|
|
|
blake3 = "0.3.7"
|
|
|
|
futures = "0.3.7"
|
|
|
|
handlebars = "3.5.1"
|
2020-11-29 20:22:40 +00:00
|
|
|
http = "0.2.1"
|
2020-11-27 00:50:22 +00:00
|
|
|
lazy_static = "1.4.0"
|
|
|
|
percent-encoding = "2.1.0"
|
|
|
|
pulldown-cmark = "0.8.0"
|
|
|
|
regex = "1.4.1"
|
|
|
|
reqwest = { version = "0.10.8", features = ["stream"] }
|
|
|
|
rmp-serde = "0.14.4"
|
|
|
|
serde = {version = "1.0.117", features = ["derive"]}
|
2020-12-15 05:15:17 +00:00
|
|
|
serde_json = "1.0.60"
|
2020-11-27 00:50:22 +00:00
|
|
|
structopt = "0.3.20"
|
2020-11-29 18:50:51 +00:00
|
|
|
thiserror = "1.0.22"
|
2020-11-27 00:50:22 +00:00
|
|
|
tokio = { version = "0.2.22", features = ["full"] }
|
|
|
|
tracing = "0.1.21"
|
|
|
|
tracing-futures = "0.2.4"
|
|
|
|
tracing-subscriber = "0.2.15"
|
|
|
|
toml = "0.5.7"
|
|
|
|
|
|
|
|
always_equal = { path = "../always_equal" }
|
|
|
|
ptth_core = { path = "../ptth_core" }
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
|
|
|
|
maplit = "1.0.2"
|
|
|
|
rand = "0.6.5"
|