Skip to content

Commit 54468b2

Browse files
Reexport jzon crate from run-make-support to give it access to run-make tests
1 parent d626fbd commit 54468b2

File tree

3 files changed

+10
-0
lines changed

3 files changed

+10
-0
lines changed

Cargo.lock

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1939,6 +1939,12 @@ dependencies = [
19391939
"serde_json",
19401940
]
19411941

1942+
[[package]]
1943+
name = "jzon"
1944+
version = "0.12.5"
1945+
source = "registry+https://github.com/rust-lang/crates.io-index"
1946+
checksum = "17ab85f84ca42c5ec520e6f3c9966ba1fd62909ce260f8837e248857d2560509"
1947+
19421948
[[package]]
19431949
name = "lazy_static"
19441950
version = "1.5.0"
@@ -3147,6 +3153,7 @@ dependencies = [
31473153
"bstr",
31483154
"build_helper",
31493155
"gimli 0.31.0",
3156+
"jzon",
31503157
"object 0.36.2",
31513158
"regex",
31523159
"similar",

src/tools/run-make-support/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,5 @@ similar = "2.5.0"
1010
wasmparser = { version = "0.214", default-features = false, features = ["std"] }
1111
regex = "1.8" # 1.8 to avoid memchr 2.6.0, as 2.5.0 is pinned in the workspace
1212
gimli = "0.31.0"
13+
jzon = "0.12.5"
1314
build_helper = { path = "../build_helper" }

src/tools/run-make-support/src/lib.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@
77
// skip rustfmt on this file.
88
#![cfg_attr(rustfmt, rustfmt::skip)]
99

10+
pub use jzon;
11+
1012
mod command;
1113
mod macros;
1214
mod util;

0 commit comments

Comments
 (0)