mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-29 02:03:53 +00:00
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"
|
version = "0.0.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"object 0.34.0",
|
"object 0.34.0",
|
||||||
|
"regex",
|
||||||
"wasmparser",
|
"wasmparser",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
@ -6,3 +6,4 @@ edition = "2021"
|
|||||||
[dependencies]
|
[dependencies]
|
||||||
object = "0.34.0"
|
object = "0.34.0"
|
||||||
wasmparser = "0.118.2"
|
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::path::{Path, PathBuf};
|
|||||||
use std::process::{Command, Output};
|
use std::process::{Command, Output};
|
||||||
|
|
||||||
pub use object;
|
pub use object;
|
||||||
|
pub use regex;
|
||||||
pub use wasmparser;
|
pub use wasmparser;
|
||||||
|
|
||||||
pub use cc::{cc, extra_c_flags, extra_cxx_flags, Cc};
|
pub use cc::{cc, extra_c_flags, extra_cxx_flags, Cc};
|
||||||
|
Loading…
Reference in New Issue
Block a user