[READ-ONLY] Mirror of https://github.com/mrgnw/avify.
0

Configure Feed

Select the types of activity you want to include in your feed.

avify / Cargo.toml
916 B 37 lines
1[package] 2name = "avify" 3version = "0.2.0" 4edition = "2024" 5description = "Batch convert images to AVIF — supports RAW, HEIC/HEIF, and standard formats with parallel encoding" 6license = "MIT" 7repository = "https://github.com/mrgnw/img2avif" 8keywords = ["avif", "image", "converter", "raw", "heic"] 9categories = ["command-line-utilities", "multimedia::images"] 10readme = "README.md" 11 12[features] 13default = ["heic"] 14heic = ["dep:libheif-rs"] 15 16[dependencies] 17imagepipe = "0.5" 18image = { version = "0.24", default-features = false, features = ["jpeg", "png", "webp", "bmp", "tiff", "gif"] } 19ravif = "0.13" 20imgref = "1" 21rgb = "0.8" 22roxmltree = "0.21" 23clap = { version = "4", features = ["derive"] } 24rayon = "1" 25anyhow = "1" 26libheif-rs = { version = "2.7", optional = true } 27 28[profile.dev.package.rav1e] 29opt-level = 3 30 31[profile.dev.package.ravif] 32opt-level = 3 33 34[profile.release] 35lto = true 36codegen-units = 1 37strip = true