Skip to content

Commit 106aff9

Browse files
authored
Merge branch 'main' into feature-multithread
2 parents 2396f00 + 2c14906 commit 106aff9

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

crates/rsonpath-lib/src/classification/simd.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -461,7 +461,7 @@ pub(crate) enum SimdTag {
461461
}
462462

463463
/// Runtime-detected SIMD configuration guiding how to construct a [`Simd`] implementation for the engine.
464-
#[derive(Clone, Copy)]
464+
#[derive(Debug, Clone, Copy)]
465465
pub(crate) struct SimdConfiguration {
466466
highest_simd: SimdTag,
467467
fast_quotes: bool,

crates/rsonpath-lib/src/engine/main.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,8 @@ use smallvec::{smallvec, SmallVec};
6969
///
7070
/// The engine is stateless, meaning that it can be executed
7171
/// on any number of separate inputs, even on separate threads.
72-
#[derive(Clone)]
72+
73+
#[derive(Clone, Debug)]
7374
pub struct MainEngine {
7475
automaton: Automaton,
7576
simd: SimdConfiguration,

0 commit comments

Comments
 (0)