Skip to content

Commit

Permalink
Merge branch 'main' into feature-multithread
Browse files Browse the repository at this point in the history
  • Loading branch information
azoyan authored Dec 24, 2024
2 parents 2396f00 + 2c14906 commit 106aff9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion crates/rsonpath-lib/src/classification/simd.rs
Original file line number Diff line number Diff line change
Expand Up @@ -461,7 +461,7 @@ pub(crate) enum SimdTag {
}

/// Runtime-detected SIMD configuration guiding how to construct a [`Simd`] implementation for the engine.
#[derive(Clone, Copy)]
#[derive(Debug, Clone, Copy)]
pub(crate) struct SimdConfiguration {
highest_simd: SimdTag,
fast_quotes: bool,
Expand Down
3 changes: 2 additions & 1 deletion crates/rsonpath-lib/src/engine/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,8 @@ use smallvec::{smallvec, SmallVec};
///
/// The engine is stateless, meaning that it can be executed
/// on any number of separate inputs, even on separate threads.
#[derive(Clone)]
#[derive(Clone, Debug)]
pub struct MainEngine {
automaton: Automaton,
simd: SimdConfiguration,
Expand Down

0 comments on commit 106aff9

Please sign in to comment.