Skip to content

Commit

Permalink
Pin all occurrences of libfuzzer-sys to 0.4.7
Browse files Browse the repository at this point in the history
  • Loading branch information
landonxjames committed Jan 3, 2025
1 parent 4eab072 commit 9b3cf28
Show file tree
Hide file tree
Showing 11 changed files with 68 additions and 61 deletions.
9 changes: 5 additions & 4 deletions aws/rust-runtime/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion aws/rust-runtime/aws-config/fuzz/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ edition = "2021"
cargo-fuzz = true

[dependencies]
libfuzzer-sys = "0.4"
# Version pinned due to https://github.com/rust-fuzz/libfuzzer/issues/126
libfuzzer-sys = "=0.4.7"
aws-config = { path = ".." }

[dependencies.aws-types]
Expand Down
3 changes: 2 additions & 1 deletion aws/rust-runtime/aws-sigv4/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,8 @@ aws-smithy-runtime-api = { path = "../../../rust-runtime/aws-smithy-runtime-api"
bytes = "1"
hex-literal = "0.4.1"
httparse = "1.8"
libfuzzer-sys = "0.4.6"
# Version pinned due to https://github.com/rust-fuzz/libfuzzer/issues/126
libfuzzer-sys = "=0.4.7"
pretty_assertions = "1.3"
proptest = "1.2"
serde = "1.0.180"
Expand Down
96 changes: 48 additions & 48 deletions rust-runtime/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion rust-runtime/aws-smithy-eventstream/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "aws-smithy-eventstream"
# <IMPORTANT> Only patch releases can be made to this runtime crate until https://github.com/smithy-lang/smithy-rs/issues/3370 is resolved
version = "0.60.5"
version = "0.60.6"
# </IMPORTANT>
authors = ["AWS Rust SDK Team <aws-sdk-rust@amazon.com>", "John DiSanti <jdisanti@amazon.com>"]
description = "Event stream logic for smithy-rs."
Expand Down
3 changes: 2 additions & 1 deletion rust-runtime/aws-smithy-eventstream/fuzz/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ aws-smithy-types = { path = "../../aws-smithy-types" }
bytes = "1"
crc32fast = "1"
derive_arbitrary = "1.3"
libfuzzer-sys = "0.4"
# Version pinned due to https://github.com/rust-fuzz/libfuzzer/issues/126
libfuzzer-sys = "=0.4.7"

[dependencies.aws-smithy-eventstream]
features = ["derive-arbitrary"]
Expand Down
2 changes: 1 addition & 1 deletion rust-runtime/aws-smithy-http/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "aws-smithy-http"
version = "0.60.11"
version = "0.60.12"
authors = [
"AWS Rust SDK Team <aws-sdk-rust@amazon.com>",
"Russell Cohen <rcoh@amazon.com>",
Expand Down
3 changes: 2 additions & 1 deletion rust-runtime/aws-smithy-http/fuzz/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ edition = "2021"
cargo-fuzz = true

[dependencies]
libfuzzer-sys = "0.4"
# Version pinned due to https://github.com/rust-fuzz/libfuzzer/issues/126
libfuzzer-sys = "=0.4.7"
http = "0.2.3"

[dependencies.aws-smithy-http]
Expand Down
2 changes: 1 addition & 1 deletion rust-runtime/aws-smithy-json/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "aws-smithy-json"
version = "0.61.1"
version = "0.61.2"
authors = ["AWS Rust SDK Team <aws-sdk-rust@amazon.com>", "John DiSanti <jdisanti@amazon.com>"]
description = "Token streaming JSON parser for smithy-rs."
edition = "2021"
Expand Down
3 changes: 2 additions & 1 deletion rust-runtime/aws-smithy-json/fuzz/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ cargo-fuzz = true
[dependencies]
aws-smithy-json = { path = ".." }
aws-smithy-types = { path = "../../aws-smithy-types" }
libfuzzer-sys = "0.4"
# Version pinned due to https://github.com/rust-fuzz/libfuzzer/issues/126
libfuzzer-sys = "=0.4.7"
serde_json = { version = "1", features = ["float_roundtrip"] }

# Prevent this from interfering with workspaces
Expand Down
3 changes: 2 additions & 1 deletion rust-runtime/aws-smithy-types/fuzz/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ edition = "2021"
cargo-fuzz = true

[dependencies]
libfuzzer-sys = "0.4"
# Version pinned due to https://github.com/rust-fuzz/libfuzzer/issues/126
libfuzzer-sys = "=0.4.7"

[dependencies.aws-smithy-types]
path = ".."
Expand Down

0 comments on commit 9b3cf28

Please sign in to comment.