aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_mbe/Cargo.toml
diff options
context:
space:
mode:
authorbors[bot] <bors[bot]@users.noreply.github.com>2019-04-05 09:55:50 +0100
committerbors[bot] <bors[bot]@users.noreply.github.com>2019-04-05 09:55:50 +0100
commitbe9a44e9bad262ac5e615730e540fd434f846a0e (patch)
tree7082f2b1398f8481a5a583a8c499d9b931c5e590 /crates/ra_mbe/Cargo.toml
parent7713416477fd59348ad60d44f0ec3a3aebcf4b9f (diff)
parent6ff16c7ad9c1b72c4f04bb0d6c7fc0fdc2cc00cb (diff)
Merge #1111
1111: Add multi-byte token support in token tree to ast item list r=matklad a=edwin0cheng As discusion in https://github.com/rust-analyzer/rust-analyzer/pull/1105 , this PR add implement all multi-byte tokens in `ra_mbe` crate. Co-authored-by: Edwin Cheng <[email protected]>
Diffstat (limited to 'crates/ra_mbe/Cargo.toml')
-rw-r--r--crates/ra_mbe/Cargo.toml2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ra_mbe/Cargo.toml b/crates/ra_mbe/Cargo.toml
index 6e785f570..1d0c2a340 100644
--- a/crates/ra_mbe/Cargo.toml
+++ b/crates/ra_mbe/Cargo.toml
@@ -8,5 +8,5 @@ authors = ["rust-analyzer developers"]
8ra_syntax = { path = "../ra_syntax" } 8ra_syntax = { path = "../ra_syntax" }
9ra_parser = { path = "../ra_parser" } 9ra_parser = { path = "../ra_parser" }
10tt = { path = "../ra_tt", package = "ra_tt" } 10tt = { path = "../ra_tt", package = "ra_tt" }
11 11itertools = "0.8.0"
12rustc-hash = "1.0.0" 12rustc-hash = "1.0.0"