From be0d1d909b5e27ce1b0192fd6232e8c25145a8af Mon Sep 17 00:00:00 2001 From: Emil Ernerfeldt Date: Mon, 7 Oct 2024 13:48:56 +0200 Subject: [PATCH] Turn off `asm` features of rav1d --- crates/store/re_video/Cargo.toml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/crates/store/re_video/Cargo.toml b/crates/store/re_video/Cargo.toml index 4df896a1a32b8..d0ae8ff25bd5e 100644 --- a/crates/store/re_video/Cargo.toml +++ b/crates/store/re_video/Cargo.toml @@ -47,9 +47,10 @@ thiserror.workspace = true # If this package fails to build, install `nasm` locally, or build through `pixi`. # See https://github.com/rerun-io/rav1d/pull/1 -dav1d = { git = "https://github.com/rerun-io/rav1d", branch = "emilk/dav1d-interface", package = "rav1d", optional = true } # TODO(#7588): publish this fork +# TODO(#7588): publish this fork of rav1d +dav1d = { git = "https://github.com/rerun-io/rav1d", branch = "emilk/dav1d-interface", package = "rav1d",optional = true, default-features = false, features = ["bitdepth_8"] } -# dav1d = { version = "0.10.3", optional = true } # Requires more things to build, but is fast in debug builds. Useful for development. +# dav1d = { version = "0.10.3", optional = true } # Requires separate install of `dav1d` library. Fast in debug builds. Useful for development. [dev-dependencies] indicatif.workspace = true