9145af6b3e
* Move image loading code used by get_image_metadata from templates to imageproc * resize_image: Compute image resize op beforehand and return metadata to caller * get_image_metdata: Use a serializable response struct * imageproc: Add integration tests * imageproc: Assume webp is lossy * get_image_metadata: Use webp crate for decoding WebP, image is still not very good at it * imageproc: Test read_image_dimensions in integration tests * imageproc: Rename read_image_dimensions() as read_image_metadata() * imageproc: Fix a regression in hash computation * imageproc: Don't hardcode hashes in integration tests, pattern match them instead * imageproc: Style fixes * imageproc: Fix integration tests on Windows (hopefully)
35 lines
661 B
TOML
35 lines
661 B
TOML
[package]
|
|
name = "templates"
|
|
version = "0.1.0"
|
|
authors = ["Vincent Prouillet <prouillet.vincent@gmail.com>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
tera = "1"
|
|
base64 = "0.13"
|
|
lazy_static = "1"
|
|
toml = "0.5"
|
|
csv = "1"
|
|
serde = "1"
|
|
serde_json = "1"
|
|
serde_derive = "1"
|
|
sha2 = "0.9"
|
|
url = "2"
|
|
nom-bibtex = "0.3"
|
|
|
|
errors = { path = "../errors" }
|
|
utils = { path = "../utils" }
|
|
library = { path = "../library" }
|
|
config = { path = "../config" }
|
|
imageproc = { path = "../imageproc" }
|
|
rendering = { path = "../rendering" }
|
|
|
|
[dependencies.reqwest]
|
|
version = "0.11"
|
|
default-features = false
|
|
features = ["blocking", "rustls-tls"]
|
|
|
|
[dev-dependencies]
|
|
mockito = "0.30"
|
|
tempfile = "3"
|