2020-10-27 01:42:10 +00:00
|
|
|
[package]
|
2020-10-27 03:27:25 +00:00
|
|
|
|
2020-10-27 01:42:10 +00:00
|
|
|
name = "ptth"
|
|
|
|
version = "0.1.0"
|
2020-11-01 02:59:02 +00:00
|
|
|
authors = ["Trish"]
|
2020-10-27 01:42:10 +00:00
|
|
|
edition = "2018"
|
2020-11-01 02:59:02 +00:00
|
|
|
license = "AGPL-3.0"
|
2020-10-27 01:42:10 +00:00
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2020-10-27 03:27:25 +00:00
|
|
|
|
2020-10-31 00:00:55 +00:00
|
|
|
base64 = "0.12.3"
|
|
|
|
blake3 = "0.3.7"
|
2020-11-02 02:07:46 +00:00
|
|
|
dashmap = "3.11.10"
|
2020-10-31 00:00:55 +00:00
|
|
|
futures = "0.3.7"
|
2020-10-31 02:31:03 +00:00
|
|
|
handlebars = "3.5.1"
|
2020-10-31 00:00:55 +00:00
|
|
|
http = "0.2.1"
|
|
|
|
hyper = "0.13.8"
|
|
|
|
lazy_static = "1.4.0"
|
2020-11-02 03:34:50 +00:00
|
|
|
maplit = "1.0.2"
|
2020-10-31 00:00:55 +00:00
|
|
|
percent-encoding = "2.1.0"
|
|
|
|
regex = "1.4.1"
|
2020-10-27 03:58:50 +00:00
|
|
|
reqwest = { version = "0.10.8", features = ["stream"] }
|
2020-10-28 00:43:23 +00:00
|
|
|
rmp-serde = "0.14.4"
|
2020-10-31 00:00:55 +00:00
|
|
|
serde = {version = "1.0.117", features = ["derive"]}
|
2020-11-01 03:17:11 +00:00
|
|
|
structopt = "0.3.20"
|
2020-10-31 00:00:55 +00:00
|
|
|
tokio = { version = "0.2.22", features = ["full"] }
|
2020-11-02 03:34:50 +00:00
|
|
|
toml = "0.5.7"
|
2020-10-27 03:27:25 +00:00
|
|
|
ulid = "0.4.1"
|