From fb98ecb023a08eaeeff957d22134c1eb4a901013 Mon Sep 17 00:00:00 2001 From: Trevor Gross Date: Thu, 13 Jun 2024 04:37:16 -0500 Subject: [PATCH] Upgrade dependencies where available --- Cargo.lock | 26 +++++++++++++------------- zspell-cli/Cargo.toml | 8 ++++---- zspell-py/Cargo.toml | 4 ++-- zspell/Cargo.toml | 10 +++++----- 4 files changed, 24 insertions(+), 24 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index b33a3db..c2f6061 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1438,9 +1438,9 @@ dependencies = [ [[package]] name = "itertools" -version = "0.12.1" +version = "0.13.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569" +checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186" dependencies = [ "either", ] @@ -1875,9 +1875,9 @@ dependencies = [ [[package]] name = "pyo3" -version = "0.20.3" +version = "0.21.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "53bdbb96d49157e65d45cc287af5f32ffadd5f4761438b527b055fb0d4bb8233" +checksum = "a5e00b96a521718e08e03b1a622f01c8a8deb50719335de3f60b3b3950f069d8" dependencies = [ "cfg-if", "indoc", @@ -1893,9 +1893,9 @@ dependencies = [ [[package]] name = "pyo3-build-config" -version = "0.20.3" +version = "0.21.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "deaa5745de3f5231ce10517a1f5dd97d53e5a2fd77aa6b5842292085831d48d7" +checksum = "7883df5835fafdad87c0d888b266c8ec0f4c9ca48a5bed6bbb592e8dedee1b50" dependencies = [ "once_cell", "target-lexicon", @@ -1903,9 +1903,9 @@ dependencies = [ [[package]] name = "pyo3-ffi" -version = "0.20.3" +version = "0.21.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "62b42531d03e08d4ef1f6e85a2ed422eb678b8cd62b762e53891c05faf0d4afa" +checksum = "01be5843dc60b916ab4dad1dca6d20b9b4e6ddc8e15f50c47fe6d85f1fb97403" dependencies = [ "libc", "pyo3-build-config", @@ -1913,9 +1913,9 @@ dependencies = [ [[package]] name = "pyo3-macros" -version = "0.20.3" +version = "0.21.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7305c720fa01b8055ec95e484a6eca7a83c841267f0dd5280f0c8b8551d2c158" +checksum = "77b34069fc0682e11b31dbd10321cbf94808394c56fd996796ce45217dfac53c" dependencies = [ "proc-macro2", "pyo3-macros-backend", @@ -1925,9 +1925,9 @@ dependencies = [ [[package]] name = "pyo3-macros-backend" -version = "0.20.3" +version = "0.21.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7c7e9b68bb9c3149c5b0cade5d07f953d6d125eb4337723c4ccdb665f1f96185" +checksum = "08260721f32db5e1a5beae69a55553f56b99bd0e1c3e6e0a5e8851a9d0f5a85c" dependencies = [ "heck 0.4.1", "proc-macro2", @@ -3075,7 +3075,7 @@ dependencies = [ "dirs", "hashbrown", "indoc", - "itertools 0.12.1", + "itertools 0.13.0", "lazy_static", "pretty_assertions", "rand", diff --git a/zspell-cli/Cargo.toml b/zspell-cli/Cargo.toml index 25013a5..900d6e8 100644 --- a/zspell-cli/Cargo.toml +++ b/zspell-cli/Cargo.toml @@ -27,14 +27,14 @@ cfg-if = "1.0" clap = { version = "4.4.18", features = ["derive", "wrap_help"] } hex = "0.4" indicatif = "0.17" -serde = { version = "1.0.197", features = ["derive"] } -serde_json = "1.0.114" +serde = { version = "1.0.203", features = ["derive"] } +serde_json = "1.0.117" sha1 = "0.10.6" stringmetrics = "2.2" termcolor = "1.4.1" -anyhow = "1.0.80" +anyhow = "1.0.86" zspell = { path = "../zspell", version = "0.5.3", features = ["zspell-unstable"] } -ureq = { version = "2.9.6", features = ["json"] } +ureq = { version = "2.9.7", features = ["json"] } zspell-index = "0.5.0" [dev-dependencies] diff --git a/zspell-py/Cargo.toml b/zspell-py/Cargo.toml index 8405684..83c233a 100644 --- a/zspell-py/Cargo.toml +++ b/zspell-py/Cargo.toml @@ -15,11 +15,11 @@ doc = false [dependencies] regex = "1.10" -pyo3 = { version = "0.20.3", features = ["extension-module"] } +pyo3 = { version = "0.21.2", features = ["extension-module"] } zspell = { path = "../zspell" } [build-dependencies] -pyo3-build-config = "0.20.3" +pyo3-build-config = "0.21.2" [package.metadata.release] shared-version = true diff --git a/zspell/Cargo.toml b/zspell/Cargo.toml index 11e110a..b552f81 100644 --- a/zspell/Cargo.toml +++ b/zspell/Cargo.toml @@ -28,8 +28,8 @@ path = "src/lib.rs" # Base dependencies cfg-if = "1.0" dirs = "5.0.1" -hashbrown = "0.14.3" -itertools = "0.12.1" +hashbrown = "0.14.5" +itertools = "0.13.0" lazy_static = "1.4" regex = "1.10" stringmetrics = "2.2.2" @@ -44,11 +44,11 @@ pretty_assertions = "1.4" tempfile = "3.10" rand = "0.8.5" test-util = { path = "test-util" } -indoc = "2.0.4" +indoc = "2.0.5" [build-dependencies] -autocfg = "1.1.0" -indoc = "2.0.4" +autocfg = "1.3.0" +indoc = "2.0.5" [features] unstable-suggestions = []