Skip to content

Commit 682535e

Browse files
committed
add regex to run_make_support
note: version more recent than 1.8 depend on memchr 2.6, which creates conflicts as memchr 2.5.0 is pinned elsewhere in the workspace
1 parent 96e7d25 commit 682535e

File tree

3 files changed

+3
-0
lines changed

3 files changed

+3
-0
lines changed

Cargo.lock

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3342,6 +3342,7 @@ name = "run_make_support"
33423342
version = "0.0.0"
33433343
dependencies = [
33443344
"object 0.34.0",
3345+
"regex",
33453346
"wasmparser",
33463347
]
33473348

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,4 @@ edition = "2021"
66
[dependencies]
77
object = "0.34.0"
88
wasmparser = "0.118.2"
9+
regex = "1.8" # 1.8 to avoid memchr 2.6.0, as 2.5.0 is pinned in the workspace

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ use std::path::{Path, PathBuf};
1313
use std::process::{Command, Output};
1414

1515
pub use object;
16+
pub use regex;
1617
pub use wasmparser;
1718

1819
pub use cc::{cc, extra_c_flags, extra_cxx_flags, Cc};

0 commit comments

Comments
 (0)