From afe1bedbecec7137e55bfd949568491861bdd4cc Mon Sep 17 00:00:00 2001 From: Mick Grove Date: Thu, 16 Oct 2025 10:09:06 -0700 Subject: [PATCH] updated dependencies --- Cargo.toml | 6 ++++-- Makefile | 4 ++-- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index b7144c8..1eb11b5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -122,7 +122,6 @@ reqwest-middleware = "0.4.2" tracing-subscriber = {version = "0.3.19", features = ["env-filter"] } tracing-core = "0.1.34" tree-sitter = "0.25.8" -aws-smithy-runtime = "1.9.1" aws-smithy-http-client = "1.1.1" aws-smithy-runtime-api = "1.9.0" aws-smithy-types = "1.3.2" @@ -192,7 +191,10 @@ walkdir = "2.5.0" p256 = "0.13.2" ed25519-dalek = { version = "2.2", features = ["pkcs8"] } aws-sdk-s3 = "1.100.0" -gcloud-storage = "1.1.1" +gcloud-storage = { version = "1.1.1", default-features = false, features = [ + "rustls-tls", + "auth", +] } tokei = "12.1.2" [target.'cfg(not(windows))'.dependencies] diff --git a/Makefile b/Makefile index 10b6f43..0325d64 100644 --- a/Makefile +++ b/Makefile @@ -256,7 +256,7 @@ linux-x64: check-docker create-dockerignore patch perl ragel && \ git openssl-dev curl && \ \ - cargo test --workspace --all-targets --release ; \ + cargo test --workspace --all-targets ; \ \ rustup target add x86_64-unknown-linux-musl && \ \ @@ -287,7 +287,7 @@ linux-arm64: check-docker create-dockerignore \ rustup target add aarch64-unknown-linux-musl && \ \ - cargo test --workspace --all-targets --release ; \ + cargo test --workspace --all-targets ; \ \ export PKG_CONFIG_ALLOW_CROSS=1 ; \ export RUSTFLAGS="-C target-feature=+crt-static" ; \