From 21eac9b8c125e5bcb1ed780f75c717409486354d Mon Sep 17 00:00:00 2001 From: Xuanwo Date: Wed, 3 Jul 2024 19:26:24 +0800 Subject: [PATCH 1/2] chore: Don't enable reqwest default features Signed-off-by: Xuanwo --- Cargo.toml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 6c8cbe58c..4dc4c4c2d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -18,11 +18,11 @@ [workspace] resolver = "2" members = [ - "crates/catalog/*", - "crates/examples", - "crates/iceberg", - "crates/integrations/*", - "crates/test_utils", + "crates/catalog/*", + "crates/examples", + "crates/iceberg", + "crates/integrations/*", + "crates/test_utils", ] [workspace.package] @@ -72,7 +72,7 @@ parquet = "52" pilota = "0.11.2" pretty_assertions = "1.4.0" port_scanner = "0.1.5" -reqwest = { version = "^0.12", features = ["json"] } +reqwest = { version = "^0.12", default-features = false, features = ["json"] } rust_decimal = "1.31.0" serde = { version = "^1.0", features = ["rc"] } serde_bytes = "0.11.8" From 9d9495bfde510af8c246243de946c6a0aa232bfe Mon Sep 17 00:00:00 2001 From: Xuanwo Date: Wed, 3 Jul 2024 19:27:18 +0800 Subject: [PATCH 2/2] Format cargo Signed-off-by: Xuanwo --- Cargo.toml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 4dc4c4c2d..0c2bf9cf7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -18,11 +18,11 @@ [workspace] resolver = "2" members = [ - "crates/catalog/*", - "crates/examples", - "crates/iceberg", - "crates/integrations/*", - "crates/test_utils", + "crates/catalog/*", + "crates/examples", + "crates/iceberg", + "crates/integrations/*", + "crates/test_utils", ] [workspace.package]