Skip to content

Commit 062b5f9

Browse files
authored
Loosen crc-fast version bounds to allow 1.10+ (#4610)
Fixes #4598. Changes `crc-fast = "~1.9.0"` to `crc-fast = ">=1.9"` in `aws-smithy-checksums`, bumps version to 0.64.8. The `~1.9.0` constraint (>=1.9.0, <1.10.0) blocked downstream users from resolving crc-fast 1.10.
1 parent 592237d commit 062b5f9

2 files changed

Lines changed: 5 additions & 22 deletions

File tree

rust-runtime/Cargo.lock

Lines changed: 3 additions & 20 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

rust-runtime/aws-smithy-checksums/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "aws-smithy-checksums"
3-
version = "0.64.7"
3+
version = "0.64.8"
44
authors = [
55
"AWS Rust SDK Team <aws-sdk-rust@amazon.com>",
66
"Zelda Hessler <zhessler@amazon.com>",
@@ -18,7 +18,7 @@ aws-smithy-http = { path = "../aws-smithy-http" }
1818
aws-smithy-types = { path = "../aws-smithy-types", features = ["http-body-1-x"]}
1919
bytes = "1.11.1"
2020
# FIXME(https://github.com/smithy-lang/smithy-rs/issues/3981): Keep pinned until we have more comprehensive testing in place
21-
crc-fast = "~1.9.0"
21+
crc-fast = "1.9.0"
2222
hex = "0.4.3"
2323
http-1x = {package = "http", version = "1.3.1"}
2424
http-body-1x = {package = "http-body", version = "1.0.1"}

0 commit comments

Comments
 (0)