Skip to content

Commit

Permalink
chore(deps): bump alloy-core to 0.7.6 (latest), fix broken test a…
Browse files Browse the repository at this point in the history
…nd violated deny (alloy-rs#862)

* bump to 0.7.6, fix test

* add Unicode-3.0 license as allowed
  • Loading branch information
zerosnacks authored and ben186 committed Jul 27, 2024
1 parent 8c7a9d4 commit 7e7d020
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -62,11 +62,11 @@ alloy-transport-ws = { version = "0.1.0", default-features = false, path = "crat

test-utils = { version = "0.1.0", default-features = false, path = "crates/internal-test-utils", package = "alloy-internal-test-utils" }

alloy-core = { version = "0.7.2", default-features = false }
alloy-dyn-abi = { version = "0.7.2", default-features = false }
alloy-json-abi = { version = "0.7.2", default-features = false }
alloy-primitives = { version = "0.7.2", default-features = false }
alloy-sol-types = { version = "0.7.2", default-features = false }
alloy-core = { version = "0.7.6", default-features = false }
alloy-dyn-abi = { version = "0.7.6", default-features = false }
alloy-json-abi = { version = "0.7.6", default-features = false }
alloy-primitives = { version = "0.7.6", default-features = false }
alloy-sol-types = { version = "0.7.6", default-features = false }

alloy-rlp = { version = "0.3", default-features = false }

Expand Down
2 changes: 1 addition & 1 deletion crates/contract/src/call.rs
Original file line number Diff line number Diff line change
Expand Up @@ -805,7 +805,7 @@ mod tests {
let my_state_builder = my_contract.myState();
assert_eq!(my_state_builder.calldata()[..], MyContract::myStateCall {}.abi_encode(),);
let result: MyContract::myStateReturn = my_state_builder.call().await.unwrap();
assert!(result._0);
assert!(result.myState);

let do_stuff_builder = my_contract.doStuff(U256::from(0x69), true);
assert_eq!(
Expand Down
1 change: 1 addition & 0 deletions deny.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ allow = [
"BSD-3-Clause",
"0BSD",
"ISC",
"Unicode-3.0",
"Unicode-DFS-2016",
"Unlicense",
"MPL-2.0",
Expand Down

0 comments on commit 7e7d020

Please sign in to comment.