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 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102
|
# 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 = "2024"
rust-version = "1.85"
name = "ravif"
version = "0.13.0"
authors = ["Kornel LesiĆski <kornel@geekhood.net>"]
build = false
include = [
"README.md",
"LICENSE",
"Cargo.toml",
"/src/*.rs",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "rav1e-based pure Rust library for encoding images in AVIF format (powers the `cavif` tool)"
homepage = "https://lib.rs/crates/ravif"
readme = "README.md"
keywords = [
"avif",
"convert",
"av1",
"rav1f",
"cav1f",
]
categories = [
"multimedia::images",
"multimedia::encoding",
]
license = "BSD-3-Clause"
repository = "https://github.com/kornelski/cavif-rs"
[package.metadata.release]
tag = false
[features]
asm = ["rav1e/asm"]
default = [
"asm",
"threading",
]
threading = [
"dep:rayon",
"rav1e/threading",
]
[lib]
name = "ravif"
path = "src/lib.rs"
[dependencies.avif-serialize]
version = "0.8.6"
[dependencies.imgref]
version = "1.12.0"
[dependencies.loop9]
version = "0.1.5"
[dependencies.quick-error]
version = "2.0.1"
[dependencies.rav1e]
version = "0.8.1"
default-features = false
[dependencies.rayon]
version = "1.11.0"
optional = true
[dependencies.rgb]
version = "0.8.52"
default-features = false
[dev-dependencies.avif-parse]
version = "1.4.0"
[disabled.target.'cfg(target = "wasm32-unknown-unknown")'.dependencies.rav1e]
version = "0.8"
features = ["wasm"]
default-features = false
[profile.dev.package."*"]
opt-level = 2
debug = 0
[profile.release]
lto = true
|