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
|
[package]
name = "avif-parse"
version = "1.4.0"
authors = [
"Kornel LesiĆski <kornel@geekhood.net>",
"Ralph Giles <giles@mozilla.com>",
"Matthew Gregan <kinetik@flim.org>",
"Alfredo Yang <ayang@mozilla.com>",
"Jon Bauman <jbauman@mozilla.com>",
]
edition = "2021"
description = "Parser for AVIF image files"
documentation = "https://docs.rs/avif-parse/"
license = "MPL-2.0"
categories = ["multimedia::images"]
repository = "https://github.com/kornelski/avif-parse"
readme = "README.md"
include = ["/README.md", "/Cargo.toml", "/LICENSE", "/src/*.rs", "/avif_parse.h"]
keywords = ["demuxer", "image", "parser", "heif"]
rust-version = "1.69"
[lib]
crate-type = ["rlib", "staticlib"]
[dependencies]
byteorder = "1.5.0"
bitreader = "0.3.8"
leb128 = "0.2.5"
log = "0.4.20"
fallible_collections = { version = "0.5.1", default-features = false, features = ["std"] }
arrayvec = "0.7.6"
[dev-dependencies]
env_logger = "0.11"
walkdir = "2.4.0"
[features]
# Obsolete (fallible allocations are used anyway)
mp4parse_fallible = []
[badges]
maintenance = { status = "passively-maintained" }
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
|