zola/components/imageproc/Cargo.toml

25 lines
458 B
TOML
Raw Normal View History

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