diff options
| author | Guillaume Gomez <guillaume1.gomez@gmail.com> | 2020-12-01 23:41:12 +0100 |
|---|---|---|
| committer | Guillaume Gomez <guillaume1.gomez@gmail.com> | 2020-12-02 10:42:50 +0100 |
| commit | 8a35b93c4d5a0071b99ecb7cf6cd91310222c3ff (patch) | |
| tree | 2a536a82677738076150e53d68c65c29f34f4dc9 | |
| parent | dc10ccfe89d6c8b4ca7993afd66c5dd83f6712ee (diff) | |
| download | rust-8a35b93c4d5a0071b99ecb7cf6cd91310222c3ff.tar.gz rust-8a35b93c4d5a0071b99ecb7cf6cd91310222c3ff.zip | |
Add rustc_lexer as dependency to rustc_passes
| -rw-r--r-- | Cargo.lock | 1 | ||||
| -rw-r--r-- | compiler/rustc_passes/Cargo.toml | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/Cargo.lock b/Cargo.lock index ce1f705bdff..85be4c392af 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4011,6 +4011,7 @@ dependencies = [ "rustc_errors", "rustc_hir", "rustc_index", + "rustc_lexer", "rustc_middle", "rustc_serialize", "rustc_session", diff --git a/compiler/rustc_passes/Cargo.toml b/compiler/rustc_passes/Cargo.toml index df6667a29d5..c87799f1c2a 100644 --- a/compiler/rustc_passes/Cargo.toml +++ b/compiler/rustc_passes/Cargo.toml @@ -18,3 +18,4 @@ rustc_ast = { path = "../rustc_ast" } rustc_serialize = { path = "../rustc_serialize" } rustc_span = { path = "../rustc_span" } rustc_trait_selection = { path = "../rustc_trait_selection" } +rustc_lexer = { path = "../rustc_lexer" } |
