fast-webp 0.1.1

Fast WebP encoder for Rust image buffers and proxy image payloads.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
name = "fast-webp"
version = "0.1.1"
authors = ["teamofey <timarnd06@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Fast WebP encoder for Rust image buffers and proxy image payloads."
homepage = "https://github.com/Teamofeyy/fast-webp"
documentation = "https://docs.rs/fast-webp"
readme = "README.md"
keywords = [
    "image",
    "webp",
    "conversion",
    "encoder",
    "proxy",
]
categories = [
    "encoding",
    "multimedia::images",
]
license = "MIT"
repository = "https://github.com/Teamofeyy/fast-webp.git"

[features]
default = ["image"]
image = ["dep:image"]
image-codecs = [
    "image",
    "image/jpeg",
    "image/png",
]

[lib]
name = "fast_webp"
path = "src/lib.rs"

[[example]]
name = "dynamic_image"
path = "examples/dynamic_image.rs"

[[example]]
name = "proxy_bytes"
path = "examples/proxy_bytes.rs"
required-features = ["image-codecs"]

[[example]]
name = "raw_buffers"
path = "examples/raw_buffers.rs"

[[bench]]
name = "convert"
path = "benches/convert.rs"
harness = false
required-features = ["image-codecs"]

[dependencies.image]
version = "^0.25.0"
optional = true
default-features = false

[dependencies.libwebp-sys]
version = "0.9.3"

[dev-dependencies.criterion]
version = "0.5"

[dev-dependencies.image]
version = "0.25"
features = [
    "jpeg",
    "png",
]
default-features = false

[dev-dependencies.webp]
version = "0.3"