Update radix-heap

Upstream has had some optimisations and it saves 7% in instructions
executed for slow_before/slow_after.rs according to `perf stat`.
pull/70/head
Wilfred Hughes 2021-11-19 23:20:37 +07:00
parent e8f45d91b8
commit 9079567695
2 changed files with 3 additions and 3 deletions

4
Cargo.lock generated

@ -344,9 +344,9 @@ dependencies = [
[[package]]
name = "radix-heap"
version = "0.4.0"
version = "0.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e78ee6b9c4989e8331a007608b0e770c99ac5abda4038076cefb6849f8c05ec4"
checksum = "bde9110b6926b8aaf55623dd7a0e2545b83b9b01cd9f47d36275fc2bc69a0bda"
[[package]]
name = "rayon"

@ -37,7 +37,7 @@ libc = "0.2.102"
log = "0.4.14"
pretty_env_logger = "0.4.0"
mimalloc = { version = "0.1.26", default-features = false }
radix-heap = "0.4.0"
radix-heap = "0.4.1"
walkdir = "2.3.2"
[dev-dependencies]