File: Cargo.toml.orig

package info (click to toggle)
rust-webp 0.3.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,996 kB
  • sloc: makefile: 2
file content (26 lines) | stat: -rw-r--r-- 624 bytes parent folder | download
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
[package]
name = "webp"
version = "0.3.0"
authors = ["Jared Forth <jaredforthdev@gmail.com>"]
edition = "2018"

description = "WebP conversion library."

homepage = "https://github.com/jaredforth/webp"
repository = "https://github.com/jaredforth/webp.git"
license = "MIT OR Apache-2.0"
readme = "README.md"
documentation = "https://docs.rs/webp"
keywords = ["image", "webp", "conversion"]
categories = ["external-ffi-bindings"]

[dependencies]
libwebp-sys = "0.9.3"
image = { version = "^0.25.0", default-features = false, optional = true }

[features]
default = ["img"]
img = [ "image" ]

[dev-dependencies]
image = "0.25"