diff options
| author | Dylan MacKenzie <ecstaticmorse@gmail.com> | 2020-08-27 18:10:57 -0700 |
|---|---|---|
| committer | Dylan MacKenzie <ecstaticmorse@gmail.com> | 2020-08-30 11:15:21 -0700 |
| commit | a88dc37c54fa7ed2d1758d06508223677b65d387 (patch) | |
| tree | da092bcae3b7c67ac2a7c5a0d052fdcb55ad7381 | |
| parent | 149307efb742bf25fc1c8da85f1e6560691ba3dd (diff) | |
| download | rust-a88dc37c54fa7ed2d1758d06508223677b65d387.tar.gz rust-a88dc37c54fa7ed2d1758d06508223677b65d387.zip | |
Add `regex` dependency to `librustc_mir`
| -rw-r--r-- | Cargo.lock | 1 | ||||
| -rw-r--r-- | compiler/rustc_mir/Cargo.toml | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/Cargo.lock b/Cargo.lock index ffc1f0dec1d..ee259b257ea 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3758,6 +3758,7 @@ dependencies = [ "itertools 0.8.2", "log_settings", "polonius-engine", + "regex", "rustc_apfloat", "rustc_ast", "rustc_attr", diff --git a/compiler/rustc_mir/Cargo.toml b/compiler/rustc_mir/Cargo.toml index 6b0412ece7a..0a22bc7d762 100644 --- a/compiler/rustc_mir/Cargo.toml +++ b/compiler/rustc_mir/Cargo.toml @@ -14,6 +14,7 @@ itertools = "0.8" tracing = "0.1" log_settings = "0.1.1" polonius-engine = "0.12.0" +regex = "1" rustc_middle = { path = "../rustc_middle" } rustc_attr = { path = "../rustc_attr" } rustc_data_structures = { path = "../rustc_data_structures" } |
