Skip to content

Commit

Permalink
Merge branch 'main' of github.com:01mf02/jaq
Browse files Browse the repository at this point in the history
  • Loading branch information
01mf02 committed Nov 22, 2024
2 parents 3102212 + 79fb1bc commit 46cba63
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 36 deletions.
41 changes: 7 additions & 34 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion jaq-json/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ parse = ["hifijson"]
jaq-core = { version = "2.0.0-epsilon", path = "../jaq-core" }
jaq-std = { version = "2.0.0-epsilon", path = "../jaq-std" }

ahash = "0.8.6"
foldhash = "0.1"
hifijson = { version = "0.2.0", optional = true }
indexmap = "2.0"
serde_json = { version = "1.0.81", optional = true }
2 changes: 1 addition & 1 deletion jaq-json/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ impl Type {
}

/// Order-preserving map
type Map<K, V> = indexmap::IndexMap<K, V, ahash::RandomState>;
type Map<K, V> = indexmap::IndexMap<K, V, foldhash::fast::RandomState>;

/// Error that can occur during filter execution.
pub type Error = jaq_core::Error<Val>;
Expand Down

0 comments on commit 46cba63

Please sign in to comment.