diff options
Diffstat (limited to 'crates/ra_tt')
-rw-r--r-- | crates/ra_tt/Cargo.toml | 1 | ||||
-rw-r--r-- | crates/ra_tt/src/lib.rs | 4 |
2 files changed, 4 insertions, 1 deletions
diff --git a/crates/ra_tt/Cargo.toml b/crates/ra_tt/Cargo.toml index 357a5c5a3..02accd404 100644 --- a/crates/ra_tt/Cargo.toml +++ b/crates/ra_tt/Cargo.toml | |||
@@ -5,5 +5,4 @@ version = "0.1.0" | |||
5 | authors = ["Aleksey Kladov <[email protected]>"] | 5 | authors = ["Aleksey Kladov <[email protected]>"] |
6 | 6 | ||
7 | [dependencies] | 7 | [dependencies] |
8 | rustc-hash = "1.0.0" | ||
9 | smol_str = "0.1.9" | 8 | smol_str = "0.1.9" |
diff --git a/crates/ra_tt/src/lib.rs b/crates/ra_tt/src/lib.rs index d7c3c62bf..043417abc 100644 --- a/crates/ra_tt/src/lib.rs +++ b/crates/ra_tt/src/lib.rs | |||
@@ -1,3 +1,7 @@ | |||
1 | /// `tt` crate defines a `TokenTree` datastructure: this is the interface (both | ||
2 | /// input and output) of macros. It closely mirrors `proc_macro` crate's | ||
3 | /// `TokenTree`. | ||
4 | |||
1 | macro_rules! impl_froms { | 5 | macro_rules! impl_froms { |
2 | ($e:ident: $($v:ident), *) => { | 6 | ($e:ident: $($v:ident), *) => { |
3 | $( | 7 | $( |