diff --git a/Cargo.lock b/Cargo.lock index 1f603f3..f23b8a5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -736,7 +736,7 @@ dependencies = [ "serde", "serde_json", "tempfile", - "thiserror 2.0.12", + "thiserror", "tungstenite", "url", "which", @@ -1105,7 +1105,7 @@ dependencies = [ "scraper", "serde", "serde_json", - "thiserror 1.0.69", + "thiserror", "tokio", "tokio-test", "url", @@ -2092,33 +2092,13 @@ dependencies = [ "utf-8", ] -[[package]] -name = "thiserror" -version = "1.0.69" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52" -dependencies = [ - "thiserror-impl 1.0.69", -] - [[package]] name = "thiserror" version = "2.0.12" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "567b8a2dae586314f7be2a752ec7474332959c6460e02bde30d702a66d488708" dependencies = [ - "thiserror-impl 2.0.12", -] - -[[package]] -name = "thiserror-impl" -version = "1.0.69" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1" -dependencies = [ - "proc-macro2", - "quote", - "syn", + "thiserror-impl", ] [[package]] @@ -2274,7 +2254,7 @@ dependencies = [ "log", "rand 0.9.0", "sha1", - "thiserror 2.0.12", + "thiserror", "utf-8", ] diff --git a/Cargo.toml b/Cargo.toml index 38ce633..bab54ee 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,7 +11,7 @@ crate-type = ["cdylib", "rlib"] pyo3 = { version = "0.24.1", features = ["extension-module"] } scraper = "0.24.0" url = "2.5.7" -thiserror = "1.0.57" +thiserror = "2.0.12" tokio = { version = "1.47.1", features = ["full"] } reqwest = { version = "0.11.24", features = ["json"] } headless_chrome = { version = "1.0.8", optional = true }