-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathCargo.toml
30 lines (26 loc) · 847 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
[package]
name = "webp-animation"
version = "0.9.0"
authors = ["Mika Vatanen <[email protected]>"]
license = "MIT OR Apache-2.0"
readme = "README.md"
repository = "https://github.com/blaind/webp-animation"
description = """
A high-level Rust wrapper for decoding and encoding WebP animations
"""
keywords = ["webp", "webp-animation", "decoder", "encoder"]
categories = ["multimedia::images", "multimedia", "api-bindings"]
edition = "2018"
rust-version = "1.47"
[dependencies]
image = { version = "0.24.1", default_features = false, optional = true }
log = "0.4.14"
[dependencies.libwebp-sys2]
version = "0.1.9"
features = ["0_5", "0_6", "1_2", "demux", "mux"]
[dev-dependencies]
image = { version = "0.24.1", default_features = false, features = ["png"] }
imageproc = "0.23.0"
env_logger = "0.10.0"
[features]
static = ["libwebp-sys2/static"]