Skip to content

Commit 0abd7c2

Browse files
authored
Merge pull request #5405 from mpapierski/fix-audit-issues
Fix audit issues
2 parents 251c00c + 6ad299c commit 0abd7c2

4 files changed

Lines changed: 43 additions & 59 deletions

File tree

Cargo.lock

Lines changed: 40 additions & 56 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ lint-smart-contracts:
131131

132132
.PHONY: audit-rs
133133
audit-rs:
134-
$(CARGO) audit --ignore RUSTSEC-2024-0437 --ignore RUSTSEC-2025-0022 --ignore RUSTSEC-2025-0055 --ignore RUSTSEC-2026-0001 --ignore RUSTSEC-2026-0007 --ignore RUSTSEC-2026-0049 --ignore RUSTSEC-2026-0068 --ignore RUSTSEC-2026-0067 --ignore RUSTSEC-2026-0098 --ignore RUSTSEC-2026-0099
134+
$(CARGO) audit
135135

136136
.PHONY: audit
137137
audit: audit-rs

execution_engine_testing/tests/src/test/explorer/faucet.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -663,7 +663,7 @@ fn faucet_costs() {
663663
// This test will fail if execution costs vary. The expected costs should not be updated
664664
// without understanding why the cost has changed. If the costs do change, it should be
665665
// reflected in the "Costs by Entry Point" section of the faucet crate's README.md.
666-
const EXPECTED_FAUCET_INSTALL_COST: u64 = 149_263_295_166;
666+
const EXPECTED_FAUCET_INSTALL_COST: u64 = 149_181_711_315;
667667
const EXPECTED_FAUCET_INSTALL_COST_ALT: u64 = 149_230_872_143;
668668

669669
const EXPECTED_FAUCET_SET_VARIABLES_COST: u64 = 79_463_750;

node/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ toml = { version = "0.8.19", features = ["preserve_order"] }
8888
tower = { version = "0.4.6", features = ["limit"] }
8989
tracing = "0.1.18"
9090
tracing-futures = "0.2.5"
91-
tracing-subscriber = { version = "0.3.15", features = ["env-filter", "fmt", "json"] }
91+
tracing-subscriber = { version = "0.3.20", features = ["env-filter", "fmt", "json"] }
9292
uint = "0.9.0"
9393
uuid = { version = "0.8.1", features = ["serde", "v4"] }
9494
warp = { version = "0.3.6", features = ["compression"] }

0 commit comments

Comments
 (0)