From 5f7b1376f3f41111c0fe1e03ff5dfbf9f6e126f4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 5 Sep 2022 23:12:38 +0000 Subject: [PATCH] Bump neon from 0.7.1 to 0.10.1 in /native Bumps [neon](https://github.com/neon-bindings/neon) from 0.7.1 to 0.10.1. - [Release notes](https://github.com/neon-bindings/neon/releases) - [Changelog](https://github.com/neon-bindings/neon/blob/main/RELEASES.md) - [Commits](https://github.com/neon-bindings/neon/compare/0.7.1...0.10.1) --- updated-dependencies: - dependency-name: neon dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- native/Cargo.lock | 29 ++++++++++++++--------------- native/Cargo.toml | 2 +- 2 files changed, 15 insertions(+), 16 deletions(-) diff --git a/native/Cargo.lock b/native/Cargo.lock index e1e9aca..e5907ca 100644 --- a/native/Cargo.lock +++ b/native/Cargo.lock @@ -182,12 +182,6 @@ dependencies = [ "once_cell", ] -[[package]] -name = "cslice" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "697c714f50560202b1f4e2e09cd50a421881c83e9025db75d15f276616f04f40" - [[package]] name = "ctor" version = "0.1.23" @@ -285,7 +279,7 @@ version = "0.1.0" dependencies = [ "divvunspell", "neon", - "neon-build", + "neon-build 0.7.1", ] [[package]] @@ -579,12 +573,11 @@ dependencies = [ [[package]] name = "neon" -version = "0.7.1" +version = "0.10.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9e98cdd7a8f84ad67b8b3b15806a2972914533d3af7e4ec32cb24e3a101955b9" +checksum = "28e15415261d880aed48122e917a45e87bb82cf0260bb6db48bbab44b7464373" dependencies = [ - "cslice", - "neon-build", + "neon-build 0.10.1", "neon-runtime", "semver", "smallvec", @@ -595,15 +588,21 @@ name = "neon-build" version = "0.7.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "40aa98b2816150f1b0e4f9283b6cb8df101aba9a5e8c5facba32e607e80bedac" + +[[package]] +name = "neon-build" +version = "0.10.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8bac98a702e71804af3dacfde41edde4a16076a7bbe889ae61e56e18c5b1c811" dependencies = [ "neon-sys", ] [[package]] name = "neon-runtime" -version = "0.7.1" +version = "0.10.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cdde3dee10a83057034f65c7a1e73dc595f111c16d7e4ae123c57fa7f065e86a" +checksum = "4676720fa8bb32c64c3d9f49c47a47289239ec46b4bdb66d0913cc512cb0daca" dependencies = [ "cfg-if", "neon-sys", @@ -612,9 +611,9 @@ dependencies = [ [[package]] name = "neon-sys" -version = "0.7.1" +version = "0.10.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b629558852a971fc3cde65a58cc925f708417eb5e1f448344be28b3e3b04bb0c" +checksum = "a5ebc923308ac557184455b4aaa749470554cbac70eb4daa8b18cdc16bef7df6" dependencies = [ "cc", "regex", diff --git a/native/Cargo.toml b/native/Cargo.toml index 4d5282d..e9ab545 100644 --- a/native/Cargo.toml +++ b/native/Cargo.toml @@ -15,5 +15,5 @@ crate-type = ["dylib"] neon-build = "0.7" [dependencies] -neon = "0.7" +neon = "0.10" divvunspell = { git = "https://github.com/divvun/divvunspell", branch = "main", features = ["compression"] }