forked from qnighy/libwebp-image-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
37 lines (31 loc) · 1003 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
31
32
33
34
35
36
37
[package]
name = "libwebp-image"
version = "0.2.1-alpha.0"
authors = ["Masaki Hara <ackie.h.gmai@gmail.com>"]
edition = "2018"
description = "A bridge library for libwebp and image"
homepage = "https://github.com/qnighy/libwebp-image-rs"
repository = "https://github.com/qnighy/libwebp-image-rs"
readme = "README.md"
keywords = ["webp", "image"]
categories = ["multimedia", "multimedia::images"]
license = "MIT OR Apache-2.0"
exclude = [
".github",
"/tests",
]
[badges]
travis-ci = { repository = "qnighy/libwebp-image-rs", branch = "master" }
is-it-maintained-issue-resolution = { repository = "qnighy/libwebp-image-rs" }
is-it-maintained-open-issues = { repository = "qnighy/libwebp-image-rs" }
[dependencies]
libwebp = "0.1.0"
image = { version = "0.23.12", default-features = false }
[dev-dependencies]
rand = "0.8.3"
approx = "0.4.0"
[features]
default = []
"libwebp-0_5" = ["libwebp/0_5"]
"libwebp-0_6" = ["libwebp/0_6", "libwebp-0_5"]
"libwebp-1_1" = ["libwebp/1_1", "libwebp-0_6"]