From 12eab7e5843f7cb10c07c8c3ff4113bf62fd5529 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 13 Apr 2026 04:37:22 +0000 Subject: [PATCH] deps(cargo):(deps): bump thiserror from 1.0.69 to 2.0.18 Bumps [thiserror](https://github.com/dtolnay/thiserror) from 1.0.69 to 2.0.18. - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.69...2.0.18) --- updated-dependencies: - dependency-name: thiserror dependency-version: 2.0.18 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- Cargo.lock | 26 +++++++++++++++++++++++--- crates/ymir-catalog/Cargo.toml | 2 +- 2 files changed, 24 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 65c8629..ac91baf 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1088,7 +1088,7 @@ dependencies = [ "rand_chacha", "simd_helpers", "system-deps", - "thiserror", + "thiserror 1.0.69", "v_frame", "wasm-bindgen", ] @@ -1305,7 +1305,16 @@ version = "1.0.69" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52" dependencies = [ - "thiserror-impl", + "thiserror-impl 1.0.69", +] + +[[package]] +name = "thiserror" +version = "2.0.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4" +dependencies = [ + "thiserror-impl 2.0.18", ] [[package]] @@ -1319,6 +1328,17 @@ dependencies = [ "syn", ] +[[package]] +name = "thiserror-impl" +version = "2.0.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + [[package]] name = "thrift" version = "0.17.0" @@ -1637,7 +1657,7 @@ dependencies = [ "serde", "serde_json", "tempfile", - "thiserror", + "thiserror 2.0.18", "ymir-core", ] diff --git a/crates/ymir-catalog/Cargo.toml b/crates/ymir-catalog/Cargo.toml index 82d3a42..c510f40 100644 --- a/crates/ymir-catalog/Cargo.toml +++ b/crates/ymir-catalog/Cargo.toml @@ -22,7 +22,7 @@ parquet = { version = "58", default-features = false, features = ["snap", "zstd" csv = "1" serde = { version = "1", features = ["derive"] } bincode = "1" -thiserror = "1" +thiserror = "2" ymir-core = { path = "../ymir-core", version = "0.1.0" } [dev-dependencies]