diff --git a/Cargo.lock b/Cargo.lock index 21c83fb770..2393a8c1f8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -872,15 +872,6 @@ version = "1.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8c3c1a368f70d6cf7302d78f8f7093da241fb8e8807c05cc9e51a125895a6d5b" -[[package]] -name = "basic-toml" -version = "0.1.9" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "823388e228f614e9558c6804262db37960ec8821856535f5c3f59913140558f8" -dependencies = [ - "serde", -] - [[package]] name = "binary-merkle-tree" version = "16.0.0" @@ -5990,18 +5981,19 @@ dependencies = [ [[package]] name = "macrotest" -version = "1.0.13" +version = "1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4e2035deb453578ff1cd2da2761ac78abbffffd1d06a0f59261c082ea713fdad" +checksum = "f0597a8d49ceeea5845b12d1970aa993261e68d4660b327eabab667b3e7ffd60" dependencies = [ - "basic-toml", "diff", + "fastrand", "glob", "prettyplease", "serde", "serde_derive", "serde_json", "syn 2.0.101", + "toml_edit", ] [[package]] diff --git a/precompiles/macro/Cargo.toml b/precompiles/macro/Cargo.toml index a1704fd07b..d8cb4db694 100644 --- a/precompiles/macro/Cargo.toml +++ b/precompiles/macro/Cargo.toml @@ -22,7 +22,7 @@ sp-crypto-hashing = { workspace = true } syn = "2.0" [dev-dependencies] -macrotest = "1.0.13" +macrotest = "1.1.0" trybuild = "1.0" precompile-utils = { path = "../", features = ["testing"] }