Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Disable the futures/executor feature to remove futures-executor from the dep tree #1926

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Expand Up @@ -12,6 +12,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Swap the non-RustCrypto `md5` crate for the RustCrypto `md-5` crate, to match
usage of RustCrypto `sha2` crate
- Remove `Sync` constraint on `ByteStream`-related functions.
- Remove `futures-executor` as a transitive dependency
## [0.46.0] - 2021-01-05

- Display `rusoto_core::Client` in docs
Expand Down
2 changes: 1 addition & 1 deletion integration_tests/Cargo.toml
Expand Up @@ -653,7 +653,7 @@ path = "../rusoto/services/ram"
async-trait = "0.1.31"
env_logger = "0.7"
bytes = "1.0"
futures = "0.3"
futures = { version = "0.3", default-features = false, features = ["std", "async-await"] }
log = "0.4"
rand = "0.7"
time = "0.2"
Expand Down
2 changes: 1 addition & 1 deletion mock/Cargo.toml
Expand Up @@ -21,7 +21,7 @@ edition = "2018"
[dependencies]
async-trait = "0.1"
chrono = "0.4"
futures = "0.3"
futures = { version = "0.3", default-features = false, features = ["std", "async-await"] }
http = "0.2"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
Expand Down
2 changes: 1 addition & 1 deletion rusoto/core/Cargo.toml
Expand Up @@ -25,7 +25,7 @@ rustc_version = "0.3"
async-trait = "0.1"
bytes = "1.0"
crc32fast = "1.2"
futures = "0.3"
futures = { version = "0.3", default-features = false, features = ["std", "async-await"] }
http = "0.2"
hyper = { version = "0.14", features = ["client", "http1", "http2", "tcp"] }
hyper-rustls = { version = "0.22", optional = true }
Expand Down
2 changes: 1 addition & 1 deletion rusoto/credential/Cargo.toml
Expand Up @@ -19,7 +19,7 @@ edition = "2018"
async-trait = "0.1"
chrono = { version = "0.4", default-features = false, features = ["clock", "serde"] }
dirs-next = "2.0.0"
futures = "0.3"
futures = { version = "0.3", default-features = false, features = ["std", "async-await"] }
hyper = { version = "0.14", features = ["client", "http1", "tcp", "stream"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
Expand Down
2 changes: 2 additions & 0 deletions rusoto/services/accessanalyzer/Cargo.toml
Expand Up @@ -25,6 +25,8 @@ serde_json = "1.0"

[dependencies.futures]
version = "0.3"
default-features = false
features = ["std", "async-await"]

[dependencies.rusoto_core]
version = "0.46.0"
Expand Down
2 changes: 2 additions & 0 deletions rusoto/services/acm-pca/Cargo.toml
Expand Up @@ -23,6 +23,8 @@ serde_json = "1.0"

[dependencies.futures]
version = "0.3"
default-features = false
features = ["std", "async-await"]

[dependencies.rusoto_core]
version = "0.46.0"
Expand Down
2 changes: 2 additions & 0 deletions rusoto/services/acm/Cargo.toml
Expand Up @@ -23,6 +23,8 @@ serde_json = "1.0"

[dependencies.futures]
version = "0.3"
default-features = false
features = ["std", "async-await"]

[dependencies.rusoto_core]
version = "0.46.0"
Expand Down
2 changes: 2 additions & 0 deletions rusoto/services/alexaforbusiness/Cargo.toml
Expand Up @@ -23,6 +23,8 @@ serde_json = "1.0"

[dependencies.futures]
version = "0.3"
default-features = false
features = ["std", "async-await"]

[dependencies.rusoto_core]
version = "0.46.0"
Expand Down
2 changes: 2 additions & 0 deletions rusoto/services/amplify/Cargo.toml
Expand Up @@ -25,6 +25,8 @@ serde_json = "1.0"

[dependencies.futures]
version = "0.3"
default-features = false
features = ["std", "async-await"]

[dependencies.rusoto_core]
version = "0.46.0"
Expand Down
2 changes: 2 additions & 0 deletions rusoto/services/apigateway/Cargo.toml
Expand Up @@ -25,6 +25,8 @@ serde_json = "1.0"

[dependencies.futures]
version = "0.3"
default-features = false
features = ["std", "async-await"]

[dependencies.rusoto_core]
version = "0.46.0"
Expand Down
2 changes: 2 additions & 0 deletions rusoto/services/apigatewaymanagementapi/Cargo.toml
Expand Up @@ -24,6 +24,8 @@ serde_derive = "1.0.2"

[dependencies.futures]
version = "0.3"
default-features = false
features = ["std", "async-await"]

[dependencies.rusoto_core]
version = "0.46.0"
Expand Down
2 changes: 2 additions & 0 deletions rusoto/services/apigatewayv2/Cargo.toml
Expand Up @@ -25,6 +25,8 @@ serde_json = "1.0"

[dependencies.futures]
version = "0.3"
default-features = false
features = ["std", "async-await"]

[dependencies.rusoto_core]
version = "0.46.0"
Expand Down
2 changes: 2 additions & 0 deletions rusoto/services/appconfig/Cargo.toml
Expand Up @@ -25,6 +25,8 @@ serde_json = "1.0"

[dependencies.futures]
version = "0.3"
default-features = false
features = ["std", "async-await"]

[dependencies.rusoto_core]
version = "0.46.0"
Expand Down
2 changes: 2 additions & 0 deletions rusoto/services/application-autoscaling/Cargo.toml
Expand Up @@ -23,6 +23,8 @@ serde_json = "1.0"

[dependencies.futures]
version = "0.3"
default-features = false
features = ["std", "async-await"]

[dependencies.rusoto_core]
version = "0.46.0"
Expand Down
2 changes: 2 additions & 0 deletions rusoto/services/application-insights/Cargo.toml
Expand Up @@ -23,6 +23,8 @@ serde_json = "1.0"

[dependencies.futures]
version = "0.3"
default-features = false
features = ["std", "async-await"]

[dependencies.rusoto_core]
version = "0.46.0"
Expand Down
2 changes: 2 additions & 0 deletions rusoto/services/appmesh/Cargo.toml
Expand Up @@ -25,6 +25,8 @@ serde_json = "1.0"

[dependencies.futures]
version = "0.3"
default-features = false
features = ["std", "async-await"]

[dependencies.rusoto_core]
version = "0.46.0"
Expand Down
2 changes: 2 additions & 0 deletions rusoto/services/appstream/Cargo.toml
Expand Up @@ -23,6 +23,8 @@ serde_json = "1.0"

[dependencies.futures]
version = "0.3"
default-features = false
features = ["std", "async-await"]

[dependencies.rusoto_core]
version = "0.46.0"
Expand Down
2 changes: 2 additions & 0 deletions rusoto/services/appsync/Cargo.toml
Expand Up @@ -25,6 +25,8 @@ serde_json = "1.0"

[dependencies.futures]
version = "0.3"
default-features = false
features = ["std", "async-await"]

[dependencies.rusoto_core]
version = "0.46.0"
Expand Down
2 changes: 2 additions & 0 deletions rusoto/services/athena/Cargo.toml
Expand Up @@ -23,6 +23,8 @@ serde_json = "1.0"

[dependencies.futures]
version = "0.3"
default-features = false
features = ["std", "async-await"]

[dependencies.rusoto_core]
version = "0.46.0"
Expand Down
2 changes: 2 additions & 0 deletions rusoto/services/autoscaling-plans/Cargo.toml
Expand Up @@ -23,6 +23,8 @@ serde_json = "1.0"

[dependencies.futures]
version = "0.3"
default-features = false
features = ["std", "async-await"]

[dependencies.rusoto_core]
version = "0.46.0"
Expand Down
2 changes: 2 additions & 0 deletions rusoto/services/autoscaling/Cargo.toml
Expand Up @@ -24,6 +24,8 @@ xml-rs = "0.8"

[dependencies.futures]
version = "0.3"
default-features = false
features = ["std", "async-await"]

[dependencies.rusoto_core]
version = "0.46.0"
Expand Down
2 changes: 2 additions & 0 deletions rusoto/services/backup/Cargo.toml
Expand Up @@ -25,6 +25,8 @@ serde_json = "1.0"

[dependencies.futures]
version = "0.3"
default-features = false
features = ["std", "async-await"]

[dependencies.rusoto_core]
version = "0.46.0"
Expand Down
2 changes: 2 additions & 0 deletions rusoto/services/batch/Cargo.toml
Expand Up @@ -25,6 +25,8 @@ serde_json = "1.0"

[dependencies.futures]
version = "0.3"
default-features = false
features = ["std", "async-await"]

[dependencies.rusoto_core]
version = "0.46.0"
Expand Down
2 changes: 2 additions & 0 deletions rusoto/services/budgets/Cargo.toml
Expand Up @@ -23,6 +23,8 @@ serde_json = "1.0"

[dependencies.futures]
version = "0.3"
default-features = false
features = ["std", "async-await"]

[dependencies.rusoto_core]
version = "0.46.0"
Expand Down
2 changes: 2 additions & 0 deletions rusoto/services/ce/Cargo.toml
Expand Up @@ -23,6 +23,8 @@ serde_json = "1.0"

[dependencies.futures]
version = "0.3"
default-features = false
features = ["std", "async-await"]

[dependencies.rusoto_core]
version = "0.46.0"
Expand Down
2 changes: 2 additions & 0 deletions rusoto/services/chime/Cargo.toml
Expand Up @@ -25,6 +25,8 @@ serde_json = "1.0"

[dependencies.futures]
version = "0.3"
default-features = false
features = ["std", "async-await"]

[dependencies.rusoto_core]
version = "0.46.0"
Expand Down
2 changes: 2 additions & 0 deletions rusoto/services/cloud9/Cargo.toml
Expand Up @@ -23,6 +23,8 @@ serde_json = "1.0"

[dependencies.futures]
version = "0.3"
default-features = false
features = ["std", "async-await"]

[dependencies.rusoto_core]
version = "0.46.0"
Expand Down
2 changes: 2 additions & 0 deletions rusoto/services/clouddirectory/Cargo.toml
Expand Up @@ -25,6 +25,8 @@ serde_json = "1.0"

[dependencies.futures]
version = "0.3"
default-features = false
features = ["std", "async-await"]

[dependencies.rusoto_core]
version = "0.46.0"
Expand Down
2 changes: 2 additions & 0 deletions rusoto/services/cloudformation/Cargo.toml
Expand Up @@ -24,6 +24,8 @@ xml-rs = "0.8"

[dependencies.futures]
version = "0.3"
default-features = false
features = ["std", "async-await"]

[dependencies.rusoto_core]
version = "0.46.0"
Expand Down
2 changes: 2 additions & 0 deletions rusoto/services/cloudfront/Cargo.toml
Expand Up @@ -23,6 +23,8 @@ xml-rs = "0.8"

[dependencies.futures]
version = "0.3"
default-features = false
features = ["std", "async-await"]

[dependencies.rusoto_core]
version = "0.46.0"
Expand Down
2 changes: 2 additions & 0 deletions rusoto/services/cloudhsm/Cargo.toml
Expand Up @@ -23,6 +23,8 @@ serde_json = "1.0"

[dependencies.futures]
version = "0.3"
default-features = false
features = ["std", "async-await"]

[dependencies.rusoto_core]
version = "0.46.0"
Expand Down
2 changes: 2 additions & 0 deletions rusoto/services/cloudhsmv2/Cargo.toml
Expand Up @@ -23,6 +23,8 @@ serde_json = "1.0"

[dependencies.futures]
version = "0.3"
default-features = false
features = ["std", "async-await"]

[dependencies.rusoto_core]
version = "0.46.0"
Expand Down
2 changes: 2 additions & 0 deletions rusoto/services/cloudsearch/Cargo.toml
Expand Up @@ -24,6 +24,8 @@ xml-rs = "0.8"

[dependencies.futures]
version = "0.3"
default-features = false
features = ["std", "async-await"]

[dependencies.rusoto_core]
version = "0.46.0"
Expand Down
2 changes: 2 additions & 0 deletions rusoto/services/cloudsearchdomain/Cargo.toml
Expand Up @@ -24,6 +24,8 @@ serde_derive = "1.0.2"

[dependencies.futures]
version = "0.3"
default-features = false
features = ["std", "async-await"]

[dependencies.rusoto_core]
version = "0.46.0"
Expand Down
2 changes: 2 additions & 0 deletions rusoto/services/cloudtrail/Cargo.toml
Expand Up @@ -23,6 +23,8 @@ serde_json = "1.0"

[dependencies.futures]
version = "0.3"
default-features = false
features = ["std", "async-await"]

[dependencies.rusoto_core]
version = "0.46.0"
Expand Down
2 changes: 2 additions & 0 deletions rusoto/services/cloudwatch/Cargo.toml
Expand Up @@ -24,6 +24,8 @@ xml-rs = "0.8"

[dependencies.futures]
version = "0.3"
default-features = false
features = ["std", "async-await"]

[dependencies.rusoto_core]
version = "0.46.0"
Expand Down
2 changes: 2 additions & 0 deletions rusoto/services/codebuild/Cargo.toml
Expand Up @@ -23,6 +23,8 @@ serde_json = "1.0"

[dependencies.futures]
version = "0.3"
default-features = false
features = ["std", "async-await"]

[dependencies.rusoto_core]
version = "0.46.0"
Expand Down
2 changes: 2 additions & 0 deletions rusoto/services/codecommit/Cargo.toml
Expand Up @@ -23,6 +23,8 @@ serde_json = "1.0"

[dependencies.futures]
version = "0.3"
default-features = false
features = ["std", "async-await"]

[dependencies.rusoto_core]
version = "0.46.0"
Expand Down
2 changes: 2 additions & 0 deletions rusoto/services/codedeploy/Cargo.toml
Expand Up @@ -23,6 +23,8 @@ serde_json = "1.0"

[dependencies.futures]
version = "0.3"
default-features = false
features = ["std", "async-await"]

[dependencies.rusoto_core]
version = "0.46.0"
Expand Down
2 changes: 2 additions & 0 deletions rusoto/services/codeguru-reviewer/Cargo.toml
Expand Up @@ -25,6 +25,8 @@ serde_json = "1.0"

[dependencies.futures]
version = "0.3"
default-features = false
features = ["std", "async-await"]

[dependencies.rusoto_core]
version = "0.46.0"
Expand Down
2 changes: 2 additions & 0 deletions rusoto/services/codeguruprofiler/Cargo.toml
Expand Up @@ -25,6 +25,8 @@ serde_json = "1.0"

[dependencies.futures]
version = "0.3"
default-features = false
features = ["std", "async-await"]

[dependencies.rusoto_core]
version = "0.46.0"
Expand Down
2 changes: 2 additions & 0 deletions rusoto/services/codepipeline/Cargo.toml
Expand Up @@ -23,6 +23,8 @@ serde_json = "1.0"

[dependencies.futures]
version = "0.3"
default-features = false
features = ["std", "async-await"]

[dependencies.rusoto_core]
version = "0.46.0"
Expand Down
2 changes: 2 additions & 0 deletions rusoto/services/codestar-connections/Cargo.toml
Expand Up @@ -23,6 +23,8 @@ serde_json = "1.0"

[dependencies.futures]
version = "0.3"
default-features = false
features = ["std", "async-await"]

[dependencies.rusoto_core]
version = "0.46.0"
Expand Down