-
Notifications
You must be signed in to change notification settings - Fork 9
/
Cargo.toml
50 lines (42 loc) · 1.25 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
[package]
name = "libwebp-sys2"
version = "0.1.9"
authors = ["Masaki Hara <[email protected]>"]
links = "webp"
build = "build.rs"
edition = "2018"
description = "A handwritten raw interface to libwebp"
homepage = "https://github.com/qnighy/libwebp-sys2-rs"
repository = "https://github.com/qnighy/libwebp-sys2-rs"
readme = "README.md"
keywords = ["webp", "image"]
categories = ["external-ffi-bindings", "multimedia", "multimedia::images"]
# Note, the vendored source (c_src) is also distributed under BSD-3-Clause with Google as its copyright holder.
license = "BSD-3-Clause"
[badges]
travis-ci = { repository = "qnighy/libwebp-sys2-rs", branch = "master" }
is-it-maintained-issue-resolution = { repository = "qnighy/libwebp-sys2-rs" }
is-it-maintained-open-issues = { repository = "qnighy/libwebp-sys2-rs" }
[lib]
name = "libwebp_sys"
[dependencies]
cfg-if = "1.0.0"
libc = "0.2.43"
[features]
default = []
demux = []
mux = []
"0_5" = []
"0_6" = ["0_5"]
"1_1" = ["0_6"]
"1_2" = ["1_1"]
static = []
extern-types = []
__doc_cfg = ["1_2", "demux", "mux"]
[package.metadata.docs.rs]
features = ["1_2", "demux", "mux", "__doc_cfg", "extern-types"]
[build-dependencies]
pkg-config = "0.3.17"
cc = "1.0.50"
[target.'cfg(target_env = "msvc")'.build-dependencies]
vcpkg = "0.2.8"