Skip to content

Commit

Permalink
Correctly bound aws-* dependency versions (#215)
Browse files Browse the repository at this point in the history
* Correctly bound `aws-*` dependency versions

Signed-off-by: Thomas Farr <[email protected]>

* Changelog entry

Signed-off-by: Thomas Farr <[email protected]>

---------

Signed-off-by: Thomas Farr <[email protected]>
  • Loading branch information
Xtansia authored Nov 20, 2023
1 parent 374fcac commit a80f8d6
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ Inspired from [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
### Added

### Dependencies
- Bound `aws-*` dependencies to `<1.0` ([#215](https://github.com/opensearch-project/opensearch-rs/pull/215))

### Changed

Expand Down
12 changes: 6 additions & 6 deletions opensearch/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -40,15 +40,15 @@ serde = { version = "1", features = ["derive"] }
serde_json = "1"
serde_with = "3"
void = "1.0.2"
aws-credential-types = { version = ">= 0.57", optional = true }
aws-sigv4 = { version = ">= 0.57", optional = true }
aws-smithy-runtime-api = { version = ">= 0.57", optional = true, features = ["client"]}
aws-types = { version = ">= 0.57", optional = true }
aws-credential-types = { version = ">= 0.57, <1.0", optional = true }
aws-sigv4 = { version = ">= 0.57, <1.0", optional = true }
aws-smithy-runtime-api = { version = ">= 0.57, <1.0", optional = true, features = ["client"]}
aws-types = { version = ">= 0.57, <1.0", optional = true }

[dev-dependencies]
anyhow = "1.0"
aws-config = ">= 0.57"
aws-smithy-async = ">= 0.57"
aws-config = ">= 0.57, <1.0"
aws-smithy-async = ">= 0.57, <1.0"
chrono = { version = "0.4", features = ["serde"] }
clap = "2"
futures = "0.3.1"
Expand Down

0 comments on commit a80f8d6

Please sign in to comment.