[package]
edition = "2021"
rust-version = "1.88"
name = "maple-render-core"
version = "0.3.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Core rendering and animation logic for maple templates"
readme = "README.md"
keywords = [
"gif",
"image",
"rendering",
"template",
"animation",
]
categories = [
"multimedia::images",
"multimedia::video",
]
license = "MIT"
repository = "https://github.com/taskylizard/maple"
[features]
default = ["webp"]
webp = ["dep:libwebp-sys"]
[lib]
name = "maple_render_core"
path = "src/lib.rs"
[[test]]
name = "webp_output"
path = "tests/webp_output.rs"
[dependencies.ab_glyph]
version = "0.2"
[dependencies.delaunator]
version = "1.0"
[dependencies.gif]
version = "0.13"
[dependencies.image]
version = "0.25"
[dependencies.imageproc]
version = "0.25"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.zip]
version = "2.1"
features = ["deflate"]
default-features = false
[target.'cfg(not(target_arch = "wasm32"))'.dependencies.libwebp-sys]
version = "=0.14.4"
features = [
"std",
"parallel",
]
optional = true
default-features = false
[target.'cfg(not(target_arch = "wasm32"))'.dependencies.rayon]
version = "1.10"