From c3a984708b4db8c8ad328e64f46d378f49786886 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 6 Nov 2024 07:31:28 -0500 Subject: [PATCH] Update thiserror requirement from 1.0.44 to 2.0.0 (#13273) * Update thiserror requirement from 1.0.44 to 2.0.0 Updates the requirements on [thiserror](https://github.com/dtolnay/thiserror) to permit the latest version. - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.44...1.0.68) --- updated-dependencies: - dependency-name: thiserror dependency-type: direct:production ... Signed-off-by: dependabot[bot] * Move thiserror dependency to sqllogictest --------- Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Andrew Lamb --- Cargo.toml | 1 - datafusion/core/Cargo.toml | 1 - datafusion/sqllogictest/Cargo.toml | 2 +- 3 files changed, 1 insertion(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index a326a32059d7..91f09102ce48 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -146,7 +146,6 @@ rstest = "0.23.0" serde_json = "1" sqlparser = { version = "0.51.0", features = ["visitor"] } tempfile = "3" -thiserror = "1.0.44" tokio = { version = "1.36", features = ["macros", "rt", "sync"] } url = "2.2" diff --git a/datafusion/core/Cargo.toml b/datafusion/core/Cargo.toml index 8c4ad80e2924..d2365280937f 100644 --- a/datafusion/core/Cargo.toml +++ b/datafusion/core/Cargo.toml @@ -157,7 +157,6 @@ rstest = { workspace = true } rust_decimal = { version = "1.27.0", features = ["tokio-pg"] } serde_json = { workspace = true } test-utils = { path = "../../test-utils" } -thiserror = { workspace = true } tokio = { workspace = true, features = ["rt-multi-thread", "parking_lot", "fs"] } tokio-postgres = "0.7.7" diff --git a/datafusion/sqllogictest/Cargo.toml b/datafusion/sqllogictest/Cargo.toml index 07dbc60e86bc..81682558d0a9 100644 --- a/datafusion/sqllogictest/Cargo.toml +++ b/datafusion/sqllogictest/Cargo.toml @@ -54,7 +54,7 @@ rust_decimal = { version = "1.27.0" } sqllogictest = "0.22.0" sqlparser = { workspace = true } tempfile = { workspace = true } -thiserror = { workspace = true } +thiserror = "2.0.0" tokio = { workspace = true } tokio-postgres = { version = "0.7.7", optional = true }