From 1597fe88c30039a515a2e38d9eda48573011eb2d Mon Sep 17 00:00:00 2001 From: Abdulla Abdurakhmanov Date: Thu, 26 Dec 2024 11:30:12 +0100 Subject: [PATCH] chore: Fix example feature toggles --- examples/gcs-rest-client/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/gcs-rest-client/Cargo.toml b/examples/gcs-rest-client/Cargo.toml index 1821e1570..4f2ea0787 100644 --- a/examples/gcs-rest-client/Cargo.toml +++ b/examples/gcs-rest-client/Cargo.toml @@ -5,7 +5,7 @@ authors = ["me@abdolence.dev"] edition = "2021" [dependencies] -gcloud-sdk = { path = "./../../gcloud-sdk", default-features = false, features = ["rest", "google-rest-storage-v1", "google-rest-compute-v1"] } +gcloud-sdk = { path = "./../../gcloud-sdk", default-features = false, features = ["google-rest-storage-v1", "google-rest-compute-v1","tls-webpki-roots"] } tokio = { version = "1.20", features = ["full"] } tracing = "0.1" tracing-subscriber = { version ="0.3", features = ["env-filter"] }