zola/components/imageproc/Cargo.toml

25 lines
458 B
TOML
Raw Permalink Normal View History

2018-02-02 20:35:04 +00:00
[package]
name = "imageproc"
version = "0.1.0"
authors = ["Vojtěch Král <vojtech@kral.hk>"]
2019-12-21 21:52:39 +00:00
edition = "2018"
2018-02-02 20:35:04 +00:00
[dependencies]
lazy_static = "1"
2018-06-23 14:38:53 +00:00
regex = "1.0"
2019-12-07 16:50:51 +00:00
tera = "1"
2020-02-10 19:48:52 +00:00
image = "0.23"
2018-06-25 17:13:21 +00:00
rayon = "1"
2021-05-12 19:07:18 +00:00
webp = "0.1.1"
serde = { version = "1", features = ["derive"] }
svg_metadata = "0.4.1"
2018-02-02 20:35:04 +00:00
errors = { path = "../errors" }
utils = { path = "../utils" }
2021-05-12 19:07:18 +00:00
config = { path = "../config" }
[dev-dependencies]
# TODO: prune
serde_json = "1"
site = { path = "../site" }