Skip to content

Commit

Permalink
fix: architecture-dependent build
Browse files Browse the repository at this point in the history
  • Loading branch information
delehef committed Jan 22, 2024
1 parent 8fc7e01 commit 30a6be2
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/import.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ use rayon::prelude::*;
#[cfg(not(all(target_arch = "x86_64", target_feature = "avx")))]
use serde_json::Value;
#[cfg(all(target_arch = "x86_64", target_feature = "avx"))]
use std::io::Read;
#[cfg(all(target_arch = "x86_64", target_feature = "avx"))]
use simd_json::BorrowedValue as Value;
use std::{
fs::File,
Expand Down

0 comments on commit 30a6be2

Please sign in to comment.