Skip to content

Commit 8e37d42

Browse files
authored
Unpin the arbitrary and derive-arbitrary dependencies (#2765)
These no longer need to be pinned since the current MSRV is compatible with their latest versions. ---- _By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice._
1 parent cfff41a commit 8e37d42

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

aws/rust-runtime/aws-config/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ tracing-subscriber = { version = "0.3.16", features = ["fmt", "json"] }
5555
tokio = { version = "1.23.1", features = ["full", "test-util"] }
5656

5757
# used for fuzzing profile parsing
58-
arbitrary = "=1.1.3" # 1.1.4 requires Rust 1.63 to compile
58+
arbitrary = "1.3"
5959

6060
# used for test case deserialization
6161
serde = { version = "1", features = ["derive"] }

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ repository = "https://github.com/awslabs/smithy-rs"
1111
derive-arbitrary = ["arbitrary", "derive_arbitrary"]
1212

1313
[dependencies]
14-
arbitrary = { version = "=1.1.3", optional = true } # 1.1.4 requires Rust 1.63 to compile
14+
arbitrary = { version = "1.3", optional = true }
1515
aws-smithy-types = { path = "../aws-smithy-types" }
1616
bytes = "1"
1717
crc32fast = "1.3"
18-
derive_arbitrary = { version = "=1.1.6", optional = true } # 1.2.0 requires Rust 1.63 to compile
18+
derive_arbitrary = { version = "1.3", optional = true }
1919

2020
[dev-dependencies]
2121
bytes-utils = "0.1"

rust-runtime/aws-smithy-eventstream/fuzz/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ edition = "2021"
99
cargo-fuzz = true
1010

1111
[dependencies]
12-
arbitrary = "=1.1.3" # 1.1.4 requires Rust 1.63 to compile
12+
arbitrary = "1.3"
1313
aws-smithy-types = { path = "../../aws-smithy-types" }
1414
bytes = "1"
1515
crc32fast = "1"
16-
derive_arbitrary = "=1.1.6" # 1.2.0 requires Rust 1.63 to compile
16+
derive_arbitrary = "1.3"
1717
libfuzzer-sys = "0.4"
1818

1919
[dependencies.aws-smithy-eventstream]

0 commit comments

Comments
 (0)