From b5c32d44f541724a407919d58bc0e4317ade32e2 Mon Sep 17 00:00:00 2001 From: "R. Tyler Croy" Date: Sun, 12 Nov 2023 17:11:07 -0800 Subject: [PATCH] Pin the `cc` dependency which has released a very incompatible 1.0.84 See cargo-lambda/cargo-lambda#566 --- Cargo.toml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 9d3d661..d5c05e9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -17,8 +17,11 @@ name = "oxbow-lambda" path = "src/bin/lambda.rs" [dependencies] +# +cc = "=1.0.83" anyhow = "=1" chrono = "0.4.31" +dynamodb_lock = { version = "0.6.1" } deltalake = { version = "0.16.4", features = ["s3", "json"]} futures = "0.3.29" tracing = { version = "0.1", features = ["log"] } @@ -31,7 +34,6 @@ gumdrop = "=0.8" # lambda requirements aws_lambda_events = { version = "0.10.0", default-features = false, features = ["s3", "sqs"]} -dynamodb_lock = { version = "0.6.0" } lambda_runtime = { version = "0.8" } rusoto_core = { version = "0.47", default-features = false, features = ["rustls"]} rusoto_credential = { version = "0.47"}