Skip to content

Commit

Permalink
Update Rust crate hashbrown to v0.15.0 (#5291)
Browse files Browse the repository at this point in the history
Co-authored-by: hash-worker[bot] <180894564+hash-worker[bot]@users.noreply.github.com>
Co-authored-by: Tim Diekmann <post@timdiekmann.de>
  • Loading branch information
hash-worker[bot] and TimDiekmann authored Oct 2, 2024
1 parent 39238ce commit 6cba465
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 4 deletions.
19 changes: 18 additions & 1 deletion Cargo.lock

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

3 changes: 2 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -90,11 +90,12 @@ ecow = { version = "=0.2.2", default-features = false }
email_address = { version = "=0.2.9", default-features = false }
enumflags2 = { version = "=0.7.10", default-features = false }
erased-serde = { version = "=0.4.5", default-features = false }
foldhash = { version = "=0.1.3", default-features = false }
futures-core = { version = "=0.3.30", default-features = false }
futures-io = { version = "=0.3.30", default-features = false }
futures-sink = { version = "=0.3.30", default-features = false }
futures-util = { version = "=0.3.30", default-features = false }
hashbrown = { version = "=0.14.5", features = ["nightly"] }
hashbrown = { version = "=0.15.0", default-features = false, features = ["nightly", "inline-more"] }
http = { version = "=1.1.0", default-features = false }
inferno = { version = "=0.11.21", default-features = false }
iso8601-duration = { version = "=0.2.0", default-features = false }
Expand Down
3 changes: 2 additions & 1 deletion libs/@local/hql/cst/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@ hql-span = { workspace = true, public = true }
ahash = { workspace = true, public = true }
bumpalo = { workspace = true, public = true, features = ["allocator_api"] }
ecow = { workspace = true, public = true }
hashbrown = { workspace = true, public = true }
hashbrown = { workspace = true, public = true, features = ["default-hasher"] }
foldhash = { workspace = true, public = true }
json-number = { workspace = true, public = true }

# Private workspace dependencies
Expand Down
2 changes: 1 addition & 1 deletion libs/@local/hql/cst/src/arena.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use bumpalo::Bump;
use hashbrown::hash_map::DefaultHashBuilder;
use hashbrown::DefaultHashBuilder;

pub type Box<'a, T> = alloc::boxed::Box<T, &'a Bump>;
pub type Vec<'a, T> = alloc::vec::Vec<T, &'a Bump>;
Expand Down

0 comments on commit 6cba465

Please sign in to comment.