pict-rs-aggregator/Cargo.toml

30 lines
908 B
TOML
Raw Normal View History

2020-12-08 21:59:55 +00:00
[package]
name = "pict-rs-aggregator"
2021-09-06 20:44:01 +00:00
version = "0.1.9"
2020-12-08 21:59:55 +00:00
authors = ["asonix <asonix@asonix.dog>"]
edition = "2018"
build = "src/build.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2021-09-06 20:44:01 +00:00
actix-rt = "2.2"
actix-web = { version = "4.0.0-beta.8", default-features = false }
awc = { version = "3.0.0-beta.7", default-features = false }
2021-06-26 17:26:04 +00:00
bcrypt = "0.10"
2021-09-06 20:44:01 +00:00
env_logger = "0.9.0"
2020-12-08 21:59:55 +00:00
mime = "0.3"
2021-09-06 20:44:01 +00:00
minify-html = "0.6.0"
2020-12-08 21:59:55 +00:00
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
sled = { version = "0.34.6", features = ["zstd"] }
structopt = "0.3.21"
2021-09-06 20:44:01 +00:00
tokio = { version = "1", default-features = false, features = ["sync"] }
2020-12-08 21:59:55 +00:00
thiserror = "1.0"
url = { version = "2.2", features = ["serde"] }
uuid = { version = "0.8.1", features = ["serde", "v4"] }
[build-dependencies]
dotenv = "0.15.0"
ructe = { version = "0.13.0", features = ["sass", "mime03"] }