ptth/Cargo.toml

30 lines
526 B
TOML
Raw Normal View History

2020-10-27 01:42:10 +00:00
[package]
2020-10-27 01:42:10 +00:00
name = "ptth"
version = "0.1.0"
authors = ["Trish"]
2020-10-27 01:42:10 +00:00
edition = "2018"
license = "AGPL-3.0"
2020-10-27 01:42:10 +00:00
[dependencies]
[dev-dependencies]
base64 = "0.12.3"
blake3 = "0.3.7"
chrono = {version = "0.4.19", features = ["serde"]}
reqwest = { version = "0.10.8", features = ["stream"] }
tokio = { version = "0.2.22", features = ["full"] }
tracing = "0.1.21"
tracing-subscriber = "0.2.15"
2020-11-27 00:20:18 +00:00
ptth_relay = { path = "crates/ptth_relay" }
ptth_server = { path = "crates/ptth_server" }
[workspace]
members = [
"crates/*",
"tools/*",
]