From d407e366e7c080d3757f83c4e120be7f9444b8e1 Mon Sep 17 00:00:00 2001 From: Jonathan Behrens Date: Fri, 22 Mar 2024 21:52:34 -0700 Subject: [PATCH] Add nasm to optionally enable faster AVIF encoding --- Cargo.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/Cargo.toml b/Cargo.toml index 0075ed1c4f..eac1218d32 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -86,6 +86,7 @@ webp = ["dep:image-webp"] # Other features rayon = ["dep:rayon"] # Enables multi-threading +nasm = ["ravif?/asm"] # Enables use of nasm by rav1e (requires nasm to be installed) avif-native = ["dep:mp4parse", "dep:dcv-color-primitives", "dep:dav1d"] # Enable native dependency libdav1d benchmarks = [] # Build some inline benchmarks. Useful only during development (requires nightly Rust)