From c511a3aabb48753d10359fc6dd809bc32891a75e Mon Sep 17 00:00:00 2001 From: Trevor Gross Date: Wed, 6 Mar 2024 01:32:26 -0600 Subject: [PATCH] Upgrade dependencies --- zspell-cli/Cargo.toml | 16 ++++++++-------- zspell-py/Cargo.toml | 4 ++-- zspell/Cargo.toml | 8 ++++---- 3 files changed, 14 insertions(+), 14 deletions(-) diff --git a/zspell-cli/Cargo.toml b/zspell-cli/Cargo.toml index fa26c00..78b8bb8 100644 --- a/zspell-cli/Cargo.toml +++ b/zspell-cli/Cargo.toml @@ -24,24 +24,24 @@ path = "src/main.rs" [dependencies] cfg-if = "1.0" -clap = { version = "4.4.7", features = ["derive", "wrap_help"] } +clap = { version = "4.4.18", features = ["derive", "wrap_help"] } hex = "0.4" indicatif = "0.17" -serde = { version = "1.0.190", features = ["derive"] } -serde_json = "1.0.107" +serde = { version = "1.0.197", features = ["derive"] } +serde_json = "1.0.114" sha1 = "0.10.6" stringmetrics = "2.2" -termcolor = "1.3.0" -anyhow = "1.0.75" +termcolor = "1.4.1" +anyhow = "1.0.80" zspell = { path = "../zspell", version = "0.5.3", features = ["zspell-unstable"] } -ureq = { version = "2.9.1", features = ["json"] } +ureq = { version = "2.9.6", features = ["json"] } zspell-index = "0.5.0" [dev-dependencies] criterion = "0.5" assert_cmd = "2.0" -predicates = "3.0" -tempfile = "3.8" +predicates = "3.1" +tempfile = "3.10" httpmock = "0.6" # util = { path = "util" } diff --git a/zspell-py/Cargo.toml b/zspell-py/Cargo.toml index 6f2bf5b..8405684 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.0", features = ["extension-module"] } +pyo3 = { version = "0.20.3", features = ["extension-module"] } zspell = { path = "../zspell" } [build-dependencies] -pyo3-build-config = "0.20.0" +pyo3-build-config = "0.20.3" [package.metadata.release] shared-version = true diff --git a/zspell/Cargo.toml b/zspell/Cargo.toml index b385212..de13f96 100644 --- a/zspell/Cargo.toml +++ b/zspell/Cargo.toml @@ -28,20 +28,20 @@ path = "src/lib.rs" # Base dependencies cfg-if = "1.0" dirs = "5.0.1" -hashbrown = "0.14.2" +hashbrown = "0.14.3" itertools = "0.11.0" lazy_static = "1.4" regex = "1.10" stringmetrics = "2.2.2" sys-locale = "0.3.1" -unicode-segmentation = "1.10.1" +unicode-segmentation = "1.11.0" visibility = "0.1.0" -xxhash-rust = { version = "0.8.7", features = ["xxh32"] } +xxhash-rust = { version = "0.8.10", features = ["xxh32"] } [dev-dependencies] criterion = "0.5" pretty_assertions = "1.4" -tempfile = "3.8" +tempfile = "3.10" rand = "0.8.5" test-util = { path = "test-util" } indoc = "2.0.4"