Skip to content

Commit

Permalink
chore: use latest hashbrown (#14)
Browse files Browse the repository at this point in the history
  • Loading branch information
thevilledev authored Nov 26, 2024
1 parent 308414b commit 8a8ae4b
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [v0.3.1] - 2024-11-26

- Fixed `hashbrown` version

## [v0.3.0] - 2024-11-26

- Added `no-std` support
Expand Down Expand Up @@ -45,7 +49,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Added benchmarks
- Released a crate

[Unreleased]: https://github.com/thevilledev/ChibiHash-rs/compare/v0.3.0...HEAD
[Unreleased]: https://github.com/thevilledev/ChibiHash-rs/compare/v0.3.1...HEAD
[v0.3.1]: https://github.com/thevilledev/ChibiHash-rs/compare/v0.3.0...v0.3.1
[v0.3.0]: https://github.com/thevilledev/ChibiHash-rs/compare/v0.2.2...v0.3.0
[v0.2.2]: https://github.com/thevilledev/ChibiHash-rs/compare/v0.2.1...v0.2.2
[v0.2.1]: https://github.com/thevilledev/ChibiHash-rs/compare/v0.2.0...v0.2.1
Expand Down
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
[package]
name = "chibihash"
version = "0.3.0"
version = "0.3.1"
edition = "2021"
license = "MIT"
authors = ["Ville Vesilehto <[email protected]>"]
description = "A Rust implementation of the ChibiHash algorithm"
description = "Rust implementation of the ChibiHash hash function"
repository = "https://github.com/thevilledev/ChibiHash-rs"
documentation = "https://docs.rs/chibihash"
keywords = ["hash", "chibihash", "fast-hash", "non-cryptographic"]
categories = ["algorithms", "no-std"]

[dependencies.hashbrown]
version = "0.15.0"
version = "0.15.2"
default-features = false

[dev-dependencies]
Expand Down

0 comments on commit 8a8ae4b

Please sign in to comment.