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
This commit is contained in:
Rémy Rakic 2024-04-14 16:36:09 +00:00
parent 96e7d25891
commit 682535e777
3 changed files with 3 additions and 0 deletions

View File

@ -3342,6 +3342,7 @@ name = "run_make_support"
version = "0.0.0"
dependencies = [
"object 0.34.0",
"regex",
"wasmparser",
]

View File

@ -6,3 +6,4 @@ edition = "2021"
[dependencies]
object = "0.34.0"
wasmparser = "0.118.2"
regex = "1.8" # 1.8 to avoid memchr 2.6.0, as 2.5.0 is pinned in the workspace

View File

@ -13,6 +13,7 @@ use std::path::{Path, PathBuf};
use std::process::{Command, Output};
pub use object;
pub use regex;
pub use wasmparser;
pub use cc::{cc, extra_c_flags, extra_cxx_flags, Cc};