diff options
author | Blaž Hrastnik | 2020-10-01 03:23:07 +0000 |
---|---|---|
committer | Blaž Hrastnik | 2020-10-01 03:25:03 +0000 |
commit | e39bd211d1579bfafa1774f6915af5725041781e (patch) | |
tree | 258a92098896a3e903da6b27a076388e2a6a0fb6 /helix-syntax/src | |
parent | 1da0be0aa045a4acd0246d82bf6214f8ec651476 (diff) |
argh -> clap to speed up compilation (no syn/proc_macro)
Diffstat (limited to 'helix-syntax/src')
-rw-r--r-- | helix-syntax/src/lib.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/helix-syntax/src/lib.rs b/helix-syntax/src/lib.rs index 61d63273..a20a2ab7 100644 --- a/helix-syntax/src/lib.rs +++ b/helix-syntax/src/lib.rs @@ -1,4 +1,3 @@ -use enum_iterator::IntoEnumIterator; use tree_sitter::Language; #[macro_export] @@ -13,7 +12,7 @@ macro_rules! mk_extern { #[macro_export] macro_rules! mk_enum { ( $( $camel:ident ),* ) => { - #[derive(Clone, Copy, Debug, IntoEnumIterator, PartialEq)] + #[derive(Clone, Copy, Debug, PartialEq)] pub enum LANG { $( $camel, |