22 lines
438 B
TOML
22 lines
438 B
TOML
|
[package]
|
||
|
|
||
|
name = "ptth_file_server"
|
||
|
version = "0.1.0"
|
||
|
authors = ["Trish"]
|
||
|
edition = "2018"
|
||
|
license = "AGPL-3.0"
|
||
|
|
||
|
[dependencies]
|
||
|
|
||
|
anyhow = "1.0.34"
|
||
|
handlebars = "3.5.1"
|
||
|
http = "0.2.1"
|
||
|
hyper = "0.13.8"
|
||
|
serde = {version = "1.0.117", features = ["derive"]}
|
||
|
structopt = "0.3.20"
|
||
|
tokio = { version = "0.2.22", features = ["full"] }
|
||
|
tracing-subscriber = "0.2.15"
|
||
|
|
||
|
ptth_core = { path = "../ptth_core" }
|
||
|
ptth_server = { path = "../ptth_server" }
|