From 45fabdc45c389bbd021b91d7e4fd99d683056818 Mon Sep 17 00:00:00 2001 From: Yuuki Toriyama Date: Tue, 3 Dec 2024 21:45:05 +0900 Subject: [PATCH 1/5] =?UTF-8?q?update:=20#534:=20python=E3=82=AF=E3=83=AC?= =?UTF-8?q?=E3=83=BC=E3=83=88=E3=81=A7=E4=BD=BF=E7=94=A8=E3=81=97=E3=81=A6?= =?UTF-8?q?=E3=81=84=E3=82=8B=E3=82=AF=E3=83=AC=E3=83=BC=E3=83=88=E3=82=92?= =?UTF-8?q?=E6=9C=80=E6=96=B0=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- python/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/Cargo.toml b/python/Cargo.toml index 9c38f501..5b435843 100644 --- a/python/Cargo.toml +++ b/python/Cargo.toml @@ -17,4 +17,4 @@ crate-type = ["cdylib"] [dependencies] japanese-address-parser = { path = "../core", features = ["blocking"] } -pyo3 = { version = "0.22.0", features = ["abi3-py37"] } +pyo3 = { version = "0.23.2", features = ["abi3-py37"] } From bef06bdc7f15c03e31e0b86b679e693e90eb7269 Mon Sep 17 00:00:00 2001 From: Yuuki Toriyama Date: Tue, 3 Dec 2024 21:51:17 +0900 Subject: [PATCH 2/5] =?UTF-8?q?update:=20#534:=20wasm=E3=82=AF=E3=83=AC?= =?UTF-8?q?=E3=83=BC=E3=83=88=E3=81=A7=E4=BD=BF=E7=94=A8=E3=81=97=E3=81=A6?= =?UTF-8?q?=E3=81=84=E3=82=8B=E3=82=AF=E3=83=AC=E3=83=BC=E3=83=88=E3=82=92?= =?UTF-8?q?=E6=9C=80=E6=96=B0=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- wasm/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wasm/Cargo.toml b/wasm/Cargo.toml index 59db0218..2372d2da 100644 --- a/wasm/Cargo.toml +++ b/wasm/Cargo.toml @@ -27,7 +27,7 @@ nightly = [ [dependencies] console_error_panic_hook = "0.1.7" japanese-address-parser = { path = "../core" } -serde-wasm-bindgen = "0.6.1" +serde-wasm-bindgen = "0.6.5" wasm-bindgen = { workspace = true } wasm-bindgen-futures = { workspace = true } # 以下は`nightly`が有効な場合のみ使用される From b321faf18fc923d3f952bb5dc5661f1b99eefe9b Mon Sep 17 00:00:00 2001 From: Yuuki Toriyama Date: Tue, 3 Dec 2024 21:53:00 +0900 Subject: [PATCH 3/5] =?UTF-8?q?update:=20#534:=20test=E3=82=AF=E3=83=AC?= =?UTF-8?q?=E3=83=BC=E3=83=88=E3=81=A7=E4=BD=BF=E7=94=A8=E3=81=97=E3=81=A6?= =?UTF-8?q?=E3=81=84=E3=82=8B=E3=82=AF=E3=83=AC=E3=83=BC=E3=83=88=E3=82=92?= =?UTF-8?q?=E6=9C=80=E6=96=B0=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit `serde`はworkspaceで定義しているバージョンを使用するように修正 --- tests/Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/Cargo.toml b/tests/Cargo.toml index 3a572731..65503637 100644 --- a/tests/Cargo.toml +++ b/tests/Cargo.toml @@ -10,7 +10,7 @@ name = "integration_tests" path = "integration_tests.rs" [dev-dependencies] -csv = "1.3.0" +csv = "1.3.1" japanese-address-parser = { path = "../core" } -serde = { version = "1.0.197", features = ["derive"] } +serde.workspace = true tokio.workspace = true From 46f100e7604d92ddde33408c7be8c7cb12043cc1 Mon Sep 17 00:00:00 2001 From: Yuuki Toriyama Date: Tue, 3 Dec 2024 21:57:58 +0900 Subject: [PATCH 4/5] =?UTF-8?q?update:=20#534:=20core=E3=82=AF=E3=83=AC?= =?UTF-8?q?=E3=83=BC=E3=83=88=E3=81=A7=E4=BD=BF=E7=94=A8=E3=81=97=E3=81=A6?= =?UTF-8?q?=E3=81=84=E3=82=8B=E3=82=AF=E3=83=AC=E3=83=BC=E3=83=88=E3=82=92?= =?UTF-8?q?=E6=9C=80=E6=96=B0=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- core/Cargo.toml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/core/Cargo.toml b/core/Cargo.toml index 9b1e9cc3..ac097e2b 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -25,11 +25,11 @@ experimental = [] [dependencies] log.workspace = true rapidfuzz = "0.5.0" -regex = { version = "1.10.6", default-features = false, features = ["std", "unicode-perl"] } +regex = { version = "1.11.1", default-features = false, features = ["std", "unicode-perl"] } serde.workspace = true -reqwest = { version = "0.12.5", default-features = false, features = ["json", "rustls-tls"] } -js-sys = "0.3.67" -thiserror = "1.0.63" +reqwest = { version = "0.12.9", default-features = false, features = ["json", "rustls-tls"] } +js-sys = "0.3.74" +thiserror = "2.0.3" jisx0401 = "0.1.0-beta.3" [dev-dependencies] @@ -37,7 +37,7 @@ tokio.workspace = true wasm-bindgen-test = { workspace = true } [target.'cfg(not(target_arch = "wasm32"))'.dev-dependencies] -mockito = "1.4.0" # mockitoがwasm32に対応していないため +mockito = "1.6.1" # mockitoがwasm32に対応していないため [package.metadata.docs.rs] all-features = true From 5bad7a6717141b6d64bca176eaa6dd589489bb2b Mon Sep 17 00:00:00 2001 From: Yuuki Toriyama Date: Tue, 3 Dec 2024 22:00:40 +0900 Subject: [PATCH 5/5] =?UTF-8?q?update:=20#534:=20workspace=E3=81=A7?= =?UTF-8?q?=E3=81=BE=E3=81=A8=E3=82=81=E3=81=A6=E3=83=90=E3=83=BC=E3=82=B8?= =?UTF-8?q?=E3=83=A7=E3=83=B3=E3=82=92=E7=AE=A1=E7=90=86=E3=81=97=E3=81=A6?= =?UTF-8?q?=E3=81=84=E3=82=8B=E3=82=AF=E3=83=AC=E3=83=BC=E3=83=88=E3=82=92?= =?UTF-8?q?=E6=9C=80=E6=96=B0=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Cargo.toml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index febc3bd0..9fc31cde 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -19,8 +19,8 @@ categories = ["parser-implementations", "wasm"] [workspace.dependencies] log = "0.4.22" -serde = { version = "1.0.192", features = ["derive"] } -tokio = { version = "1.38.0", features = ["rt", "macros"] } -wasm-bindgen = "0.2.92" -wasm-bindgen-futures = "0.4.42" -wasm-bindgen-test = "0.3.42" +serde = { version = "1.0.215", features = ["derive"] } +tokio = { version = "1.41.1", features = ["rt", "macros"] } +wasm-bindgen = "0.2.97" +wasm-bindgen-futures = "0.4.47" +wasm-bindgen-test = "0.3.47"