aho-corasick no longer needs to be pinned

Its MSRV is effectively 1.61 on aarch64, which is sufficient.
pull/647/head
Wilfred Hughes 2024-02-19 12:28:57 +07:00
parent f8107f3e10
commit 17038f4261
2 changed files with 2 additions and 10 deletions

5
Cargo.lock generated

@ -15,9 +15,9 @@ dependencies = [
[[package]]
name = "aho-corasick"
version = "1.0.5"
version = "1.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0c378d78423fdad8089616f827526ee33c19f2fddbd5de1629152c9593ba4783"
checksum = "b2969dcb958b36655471fc61f7e416fa76033bdd4bfed0678d8fee1e2d07a1f0"
dependencies = [
"memchr",
]
@ -255,7 +255,6 @@ checksum = "6184e33543162437515c2e2b48714794e37845ec9851711914eec9d308f6ebe8"
name = "difftastic"
version = "0.56.0"
dependencies = [
"aho-corasick",
"assert_cmd",
"bumpalo",
"cc",

@ -62,13 +62,6 @@ libmimalloc-sys = "=0.1.24"
radix-heap = "0.4.2"
# ignore 0.4.19 requires scoped_threads, which was added in rust 1.63.
ignore = ">= 0.4, < 0.4.19"
# aho-corasick is a dependency of regex and ignore. In 1.1.0 it added
# usage of the target feature 'neon' on aarch64, which is unstable on
# rust 1.60.
#
# https://github.com/BurntSushi/aho-corasick/commit/0be6fe43822aeb193d8894fd1400c8b843320ef0
# https://github.com/rust-lang/rust/pull/90621#issuecomment-1068998914
aho-corasick = ">= 1.0, < 1.1.0"
const_format = "0.2.22"
owo-colors = "3.5.0"
wu-diff = "0.1.2"