diff options
| author | Ralf Jung <post@ralfj.de> | 2022-07-08 00:23:01 -0400 |
|---|---|---|
| committer | Ralf Jung <post@ralfj.de> | 2022-07-08 00:23:44 -0400 |
| commit | 1cc7139ee04e7c6bb219a0f294e1e523a45890ec (patch) | |
| tree | e1d61f16f8ec4ae43a2b7ebcce2b778b6219a40f | |
| parent | 9fe6c19719db8a0f7d49bfea2133858f9b0a1860 (diff) | |
| download | rust-1cc7139ee04e7c6bb219a0f294e1e523a45890ec.tar.gz rust-1cc7139ee04e7c6bb219a0f294e1e523a45890ec.zip | |
add regex to rustc-workspace-hack
| -rw-r--r-- | Cargo.lock | 1 | ||||
| -rw-r--r-- | src/tools/rustc-workspace-hack/Cargo.toml | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/Cargo.lock b/Cargo.lock index 86936b25d8a..27804137a70 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3480,6 +3480,7 @@ dependencies = [ "proc-macro2", "quote", "rand_core 0.5.1", + "regex", "serde", "serde_json", "smallvec", diff --git a/src/tools/rustc-workspace-hack/Cargo.toml b/src/tools/rustc-workspace-hack/Cargo.toml index d7acae2ff2a..22c2d28d9f6 100644 --- a/src/tools/rustc-workspace-hack/Cargo.toml +++ b/src/tools/rustc-workspace-hack/Cargo.toml @@ -79,6 +79,8 @@ crossbeam-utils = { version = "0.8.0", features = ["nightly"] } libc = { version = "0.2.79", features = ["align"] } # Ensure default features of libz-sys, which are disabled in some scenarios. libz-sys = { version = "1.1.2" } +# same for regex +regex = { version = "1.5.5" } proc-macro2 = { version = "1", features = ["default"] } quote = { version = "1", features = ["default"] } rand_core_0_5 = { package = "rand_core", version = "0.5.1", features = ["getrandom", "alloc", "std"] } |
