From c93b301952c78a84ae7792f1565db1c2990a2b62 Mon Sep 17 00:00:00 2001 From: awxkee Date: Tue, 8 Oct 2024 20:43:50 +0100 Subject: [PATCH] Runtime dispatch, added Smpte428, rayon multithreading --- .github/workflows/build_push.yml | 2 +- src/app/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build_push.yml b/.github/workflows/build_push.yml index a0954d3..2e202d2 100644 --- a/.github/workflows/build_push.yml +++ b/.github/workflows/build_push.yml @@ -26,7 +26,7 @@ jobs: - run: rustup target add aarch64-unknown-linux-gnu x86_64-unknown-linux-gnu i686-unknown-linux-gnu powerpc-unknown-linux-gnu - run: RUSTFLAGS="-C target-feature=+neon" cargo build --all-features --target aarch64-unknown-linux-gnu - run: RUSTFLAGS="-C target-feature=+sse4.1" cargo build --all-features --target i686-unknown-linux-gnu - - run: RUSTFLAGS="-C target-feature=+avx2" cargo build --no-default-features--target i686-unknown-linux-gnu + - run: RUSTFLAGS="-C target-feature=+avx2" cargo build --no-default-features --target i686-unknown-linux-gnu - run: cargo build --target powerpc-unknown-linux-gnu --no-default-features - run: RUSTFLAGS="-C target-feature=+sse4.1" cargo build --all-features --target x86_64-unknown-linux-gnu - run: RUSTFLAGS="-C target-feature=+avx2" cargo build --all-features --target x86_64-unknown-linux-gnu diff --git a/src/app/Cargo.toml b/src/app/Cargo.toml index 0b8b898..11d8558 100644 --- a/src/app/Cargo.toml +++ b/src/app/Cargo.toml @@ -4,6 +4,6 @@ version = "0.1.0" edition = "2021" [dependencies] -colorutils-rs = { path = "../../", features = [] } +colorutils-rs = { path = "../../", features = ["rayon"] } image = "0.25.1" okhsl = "1.0.1" \ No newline at end of file