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]