endstat/Cargo.toml

18 lines
428 B
TOML
Raw Normal View History

2019-04-29 22:44:26 -07:00
[package]
name = "endstat"
version = "0.1.0"
authors = ["Edward Shen <code@eddie.sh>"]
edition = "2018"
[dependencies]
2019-04-30 23:32:41 -07:00
reqwest = "0.9"
serde = { version = "1.0", features = ["derive"] }
2019-04-29 22:44:26 -07:00
ron = "0.5"
actix-web = { version = "1.0.0-beta.2", default-features = false, features = ["brotli", "flate2-zlib"] }
2019-04-30 23:32:41 -07:00
actix = "0.8"
2019-04-29 23:47:35 -07:00
tokio = "0.1"
2019-04-30 19:49:22 -07:00
tera = "0.11"
2019-04-30 23:32:41 -07:00
env_logger = "0.6"
2019-05-01 13:01:27 -07:00
chrono = { version = "0.4", features = ["serde"] }
2019-05-02 00:21:18 -07:00
ring = "^0"