From a6feb8d64a024792e574c339923847c8a13bbf3f Mon Sep 17 00:00:00 2001 From: Dmitry Patsura Date: Fri, 26 Apr 2024 00:19:31 +0200 Subject: [PATCH] chore: Use from path (to support fork via git) --- s3/Cargo.toml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/s3/Cargo.toml b/s3/Cargo.toml index 873120053d..3e9d150dda 100644 --- a/s3/Cargo.toml +++ b/s3/Cargo.toml @@ -22,10 +22,8 @@ path = "src/lib.rs" async-std = { version = "1", optional = true } async-trait = "0.1" attohttpc = { version = "0.19", optional = true, default-features = false } -aws-creds = { version = "0.30.0", default-features = false } -# aws-creds = { path = "../aws-creds", default-features = false } -aws-region = "0.25.1" -# aws-region = {path = "../aws-region"} +aws-creds = { path = "../aws-creds" } +aws-region = { path = "../aws-region" } base64 = "0.13" cfg-if = "1" time = { version = "^0.3.6", features = ["formatting", "macros"] }