Skip to content

Commit

Permalink
build(deps): bump the dependencies group with 6 updates
Browse files Browse the repository at this point in the history
Updates the requirements on [aws-sdk-s3](https://github.com/awslabs/aws-sdk-rust), [aws-smithy-http](https://github.com/smithy-lang/smithy-rs), [aws-smithy-runtime-api](https://github.com/smithy-lang/smithy-rs), [aws-smithy-types](https://github.com/smithy-lang/smithy-rs), [aws-smithy-types-convert](https://github.com/smithy-lang/smithy-rs) and [hyper](https://github.com/hyperium/hyper) to permit the latest version.

Updates `aws-sdk-s3` to 0.38.0
- [Release notes](https://github.com/awslabs/aws-sdk-rust/releases)
- [Changelog](https://github.com/awslabs/aws-sdk-rust/blob/main/CHANGELOG.md)
- [Commits](https://github.com/awslabs/aws-sdk-rust/commits)

Updates `aws-smithy-http` to 0.60.0
- [Release notes](https://github.com/smithy-lang/smithy-rs/releases)
- [Changelog](https://github.com/smithy-lang/smithy-rs/blob/main/CHANGELOG.md)
- [Commits](https://github.com/smithy-lang/smithy-rs/commits)

Updates `aws-smithy-runtime-api` to 1.0.0
- [Release notes](https://github.com/smithy-lang/smithy-rs/releases)
- [Changelog](https://github.com/smithy-lang/smithy-rs/blob/main/CHANGELOG.md)
- [Commits](https://github.com/smithy-lang/smithy-rs/commits)

Updates `aws-smithy-types` to 1.0.0
- [Release notes](https://github.com/smithy-lang/smithy-rs/releases)
- [Changelog](https://github.com/smithy-lang/smithy-rs/blob/main/CHANGELOG.md)
- [Commits](https://github.com/smithy-lang/smithy-rs/commits)

Updates `aws-smithy-types-convert` to 0.60.0
- [Release notes](https://github.com/smithy-lang/smithy-rs/releases)
- [Changelog](https://github.com/smithy-lang/smithy-rs/blob/main/CHANGELOG.md)
- [Commits](https://github.com/smithy-lang/smithy-rs/commits)

Updates `hyper` to 1.0.1
- [Release notes](https://github.com/hyperium/hyper/releases)
- [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md)
- [Commits](hyperium/hyper@v0.14.27...v1.0.1)

---
updated-dependencies:
- dependency-name: aws-sdk-s3
  dependency-type: direct:production
  dependency-group: dependencies
- dependency-name: aws-smithy-http
  dependency-type: direct:production
  dependency-group: dependencies
- dependency-name: aws-smithy-runtime-api
  dependency-type: direct:production
  dependency-group: dependencies
- dependency-name: aws-smithy-types
  dependency-type: direct:production
  dependency-group: dependencies
- dependency-name: aws-smithy-types-convert
  dependency-type: direct:production
  dependency-group: dependencies
- dependency-name: hyper
  dependency-type: direct:production
  dependency-group: dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored Nov 20, 2023
1 parent 54124ba commit 214c17f
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
12 changes: 6 additions & 6 deletions crates/s3s-aws/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@ categories = ["web-programming", "web-programming::http-server"]

[dependencies]
async-trait = "0.1.73"
aws-sdk-s3 = "0.34.0"
aws-smithy-http = { version = "0.56.1", features = ["event-stream"] }
aws-smithy-runtime-api = { version = "0.56.1", features = ["client"] }
aws-smithy-types = "0.56.1"
aws-smithy-types-convert = { version = "0.56.1", features = ["convert-time"] }
aws-sdk-s3 = "0.38.0"
aws-smithy-http = { version = "0.60.0", features = ["event-stream"] }
aws-smithy-runtime-api = { version = "1.0.0", features = ["client"] }
aws-smithy-types = "1.0.0"
aws-smithy-types-convert = { version = "0.60.0", features = ["convert-time"] }
bytes = "1.4.0"
futures = { version = "0.3.28", default-features = false, features = ["std"] }
hyper = "0.14.27"
hyper = "1.0.1"
s3s = { version = "0.8.1-dev", path = "../s3s" }
sync_wrapper = "0.1.2"
tracing = "0.1.37"
Expand Down
4 changes: 2 additions & 2 deletions crates/s3s-fs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ crc32fast = "1.3.2"
digest = "0.10.7"
futures = "0.3.28"
hex-simd = "0.8.0"
hyper = { version = "0.14.27", optional = true, features = ["http1", "http2", "server", "stream", "runtime"] }
hyper = { version = "1.0.1", optional = true, features = ["http1", "http2", "server", "stream", "runtime"] }
md-5 = "0.10.5"
mime = "0.3.17"
nugine-rust-utils = "0.3.1"
Expand All @@ -51,7 +51,7 @@ uuid = { version = "1.4.1", features = ["v4"] }
anyhow = { version = "1.0.73", features = ["backtrace"] }
aws-config = { version = "0.56.1", default-features = false }
aws-credential-types = { version = "0.56.1", features = ["test-util"] }
aws-sdk-s3 = "0.34.0"
aws-sdk-s3 = "0.38.0"
once_cell = "1.18.0"
s3s-aws = { version = "0.8.1-dev", path = "../s3s-aws" }
tokio = { version = "1.31.0", features = ["full"] }
Expand Down
4 changes: 2 additions & 2 deletions crates/s3s-proxy/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ publish = false
[dependencies]
aws-config = "0.56.1"
aws-credential-types = "0.56.1"
aws-sdk-s3 = "0.34.0"
aws-sdk-s3 = "0.38.0"
clap = { version = "4.3.21", features = ["derive"] }
hyper = { version = "0.14.27", features = ["full"] }
hyper = { version = "1.0.1", features = ["full"] }
s3s = { version = "0.8.1-dev", path = "../s3s" }
s3s-aws = { version = "0.8.1-dev", path = "../s3s-aws" }
tokio = { version = "1.31.0", features = ["full"] }
Expand Down
2 changes: 1 addition & 1 deletion crates/s3s/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ hex-simd = "0.8.0"
hmac = "0.12.1"
http-body = "0.4.5"
httparse = "1.8.0"
hyper = { version = "0.14.27", features = ["stream"] }
hyper = { version = "1.0.1", features = ["stream"] }
itoa = "1.0.9"
memchr = "2.6.2"
mime = "0.3.17"
Expand Down

0 comments on commit 214c17f

Please sign in to comment.