RPM build fix (reverted CI changes which will need to be un-reverted or made conditional) and vendor Rust dependencies to make builds much faster in any CI system.

This commit is contained in:
Adam Ierymenko
2022-06-08 07:32:16 -04:00
parent 373ca30269
commit d5ca4e5f52
12611 changed files with 2898014 additions and 284 deletions

12
zeroidc/vendor/encoding_rs/build.rs vendored Normal file
View File

@@ -0,0 +1,12 @@
fn main() {
// This does not enable `RUSTC_BOOTSTRAP=1` for `packed_simd`.
// You still need to knowingly have a setup that makes
// `packed_simd` compile. Therefore, having this file on
// crates.io is harmless in terms of users of `encoding_rs`
// accidentally depending on nightly features. Having this
// here means that if you knowingly want this, you only
// need to maintain a fork of `packed_simd` without _also_
// having to maintain a fork of `encoding_rs`.
#[cfg(feature = "simd-accel")]
println!("cargo:rustc-env=RUSTC_BOOTSTRAP=1");
}