Skip to content

Commit

Permalink
Fix CI by pinning version of arbitrary (#1681)
Browse files Browse the repository at this point in the history
  • Loading branch information
jdisanti authored Aug 30, 2022
1 parent 0ea576f commit 2bcf4da
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion aws/rust-runtime/aws-config/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ async-trait = "0.1.51"
env_logger = "0.9.0"

# used for fuzzing profile parsing
arbitrary = "1.0.2"
arbitrary = "=1.1.3" # 1.1.4 requires Rust 1.63 to compile

# used for test case deserialization
serde = { version = "1", features = ["derive"] }
Expand Down
2 changes: 1 addition & 1 deletion rust-runtime/aws-smithy-eventstream/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ repository = "https://github.com/awslabs/smithy-rs"
derive-arbitrary = ["arbitrary"]

[dependencies]
arbitrary = { version = "1", optional = true, features = ["derive"] }
arbitrary = { version = "=1.1.3", optional = true, features = ["derive"] } # 1.1.4 requires Rust 1.63 to compile
aws-smithy-types = { path = "../aws-smithy-types" }
bytes = "1"
crc32fast = "1.3"
Expand Down
2 changes: 1 addition & 1 deletion rust-runtime/aws-smithy-eventstream/fuzz/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ edition = "2021"
cargo-fuzz = true

[dependencies]
arbitrary = { version = "1", features = ["derive"] }
arbitrary = { version = "=1.1.3", optional = true, features = ["derive"] } # 1.1.4 requires Rust 1.63 to compile
aws-smithy-types = { path = "../../aws-smithy-types" }
bytes = "1"
crc32fast = "1"
Expand Down

0 comments on commit 2bcf4da

Please sign in to comment.