From f2c1b15ea12555fdeb6b251ad08896cb07d75658 Mon Sep 17 00:00:00 2001 From: John DiSanti Date: Thu, 21 Oct 2021 04:40:15 -0700 Subject: [PATCH] Remove wildcard dependencies (#792) --- aws/rust-runtime/aws-http/Cargo.toml | 2 +- aws/sdk/examples/ec2/Cargo.toml | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/aws/rust-runtime/aws-http/Cargo.toml b/aws/rust-runtime/aws-http/Cargo.toml index cf51ca58f..db574c9f4 100644 --- a/aws/rust-runtime/aws-http/Cargo.toml +++ b/aws/rust-runtime/aws-http/Cargo.toml @@ -19,7 +19,7 @@ tracing = "0.1" [dev-dependencies] async-trait = "0.1.50" aws-smithy-async = { path = "../../../rust-runtime/aws-smithy-async", features = ["rt-tokio"] } -env_logger = "*" +env_logger = "0.9" http = "0.2.3" tokio = { version = "1", features = ["macros", "rt", "rt-multi-thread", "test-util"] } tracing-subscriber = { version = "0.2.16", features = ["fmt"] } diff --git a/aws/sdk/examples/ec2/Cargo.toml b/aws/sdk/examples/ec2/Cargo.toml index 4ca6e19bb..8326cefec 100644 --- a/aws/sdk/examples/ec2/Cargo.toml +++ b/aws/sdk/examples/ec2/Cargo.toml @@ -10,6 +10,5 @@ edition = "2018" aws-config = { path = "../../build/aws-sdk/aws-config" } aws-sdk-ec2 = { package = "aws-sdk-ec2", path = "../../build/aws-sdk/ec2" } tokio = { version = "1", features = ["full"]} -actix-rt = "*" structopt = { version = "0.3", default-features = false } tracing-subscriber = "0.2.18" -- GitLab