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:
parent
96e7d25891
commit
682535e777
@ -3342,6 +3342,7 @@ name = "run_make_support"
|
||||
version = "0.0.0"
|
||||
dependencies = [
|
||||
"object 0.34.0",
|
||||
"regex",
|
||||
"wasmparser",
|
||||
]
|
||||
|
||||
|
@ -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
|
||||
|
@ -13,6 +13,7 @@
|
||||
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};
|
||||
|
Loading…
Reference in New Issue
Block a user