From eea0f64ce63d34e591d082d95ab60eeff95802df Mon Sep 17 00:00:00 2001 From: Joel Natividad <1980690+jqnatividad@users.noreply.github.com> Date: Fri, 11 Oct 2024 19:01:07 -0400 Subject: [PATCH] use regular crc32fast crate; self-hosted runner is getting confused with which crate to use --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 67e44c2ca..a2c452984 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -281,7 +281,7 @@ csv-index = { git = "https://github.com/jqnatividad/rust-csv", branch = "qsv-opt csvlens = { git = "https://github.com/jqnatividad/csvlens", branch = "dependency-upgrades-lexical-core_fix" } # modernized fork of crc32fast, 2021 edition, MSRV 1.81, select clippy lint suggestions applied -crc32fast = { git = "https://github.com/jqnatividad/rust-crc32fast", branch = "modernize" } +# crc32fast = { git = "https://github.com/jqnatividad/rust-crc32fast", branch = "modernize" } # needed as dynfmt doesn't work in release mode without this # see https://github.com/jan-auer/dynfmt/pull/9