Skip to content
Snippets Groups Projects
Unverified Commit 2bcf4da6 authored by John DiSanti's avatar John DiSanti Committed by GitHub
Browse files

Fix CI by pinning version of `arbitrary` (#1681)

parent 0ea576fc
Branches
Tags
No related merge requests found
......@@ -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"] }
......
......@@ -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"
......
......@@ -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"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment