Skip to content

Commit 5abda5e

Browse files
Fix partial CI/CD
1 parent 0a3c3fe commit 5abda5e

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

etl-destinations/Cargo.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ homepage.workspace = true
99

1010
[features]
1111
bigquery = [
12-
"dep:futures",
1312
"dep:gcp-bigquery-client",
1413
"dep:prost",
1514
"dep:rustls",
@@ -24,7 +23,6 @@ etl = { workspace = true }
2423
chrono = { workspace = true }
2524

2625
deltalake = { workspace = true, optional = true, default-features = false, features = ["rustls", "datafusion"] }
27-
futures = { workspace = true, optional = true }
2826
gcp-bigquery-client = { workspace = true, optional = true, features = [
2927
"rust-tls",
3028
"aws-lc-rs",
@@ -51,4 +49,5 @@ rand = { workspace = true, features = ["thread_rng"] }
5149
reqwest = { workspace = true }
5250
serde = { workspace = true }
5351
serde_json = { workspace = true }
52+
tokio = { workspace = true, features = ["full"] }
5453
uuid = { workspace = true, features = ["v4"] }

etl-destinations/tests/support/bigquery.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
#![allow(dead_code)]
2+
#![cfg(feature = "bigquery")]
23

34
use base64::Engine;
45
use base64::prelude::BASE64_STANDARD;

etl-destinations/tests/support/lakekeeper.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
#![allow(dead_code)]
2+
#![cfg(feature = "iceberg")]
23

34
use uuid::Uuid;
45

0 commit comments

Comments
 (0)