-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Release 0.6 with newer hashbrown and no mod raw
Fixes #21 so crate will work on Rust 1.82. We can't upgrade to `hashbrown 0.15` since it removes the `raw` table support. This is known upstream, and may just be something we have to live with: rust-lang/hashbrown#545 (comment) To align with `hashbrown`, and given this is a breaking change regardless, we remove the `raw` module just like `hashbrown` has. This should hopefully increase the chances that one day we can move to `hashbrown`'s new lower-level interface (`HashTable`) without a breaking change. This release also removes the `nightly` feature because it was mostly useless.
- Loading branch information
Showing
12 changed files
with
80 additions
and
348 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
[package] | ||
name = "griddle" | ||
version = "0.5.2" | ||
version = "0.6.0" | ||
authors = ["Jon Gjengset <[email protected]>"] | ||
edition = "2018" | ||
edition = "2021" | ||
license = "MIT OR Apache-2.0" | ||
|
||
readme = "README.md" | ||
|
@@ -14,9 +14,9 @@ categories = ["data-structures", "no-std"] | |
|
||
[dependencies] | ||
# For the default hasher | ||
ahash_ = { version = "0.7.0", default-features = false, optional = true, package = "ahash" } | ||
ahash_ = { version = "0.8.0", default-features = false, optional = true, package = "ahash" } | ||
|
||
hashbrown = { version = "0.11.2", default-features = false, features = ["raw"] } | ||
hashbrown = { version = "0.14.0", default-features = false, features = ["raw"] } | ||
|
||
# For external trait impls | ||
rayon_ = { version = "1.3.0", optional = true, package = "rayon" } | ||
|
@@ -37,17 +37,14 @@ ahash-compile-time-rng = ["ahash_/compile-time-rng"] | |
ahash = [ "ahash_", "hashbrown/ahash" ] | ||
serde = [ "serde_", "hashbrown/serde" ] | ||
rayon = [ "rayon_", "hashbrown/rayon" ] | ||
raw = [] | ||
|
||
# Enables usage of `#[inline]` on far more functions than by default in this | ||
# crate. This may lead to a performance increase but often comes at a compile | ||
# time cost. | ||
inline-more = [ "hashbrown/inline-more" ] | ||
|
||
nightly = [] | ||
|
||
[package.metadata.docs.rs] | ||
features = ["rayon", "serde", "raw"] | ||
features = ["rayon", "serde"] | ||
|
||
[[bench]] | ||
name = "vroom" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.