mirror of
https://github.com/clap-rs/clap
synced 2024-12-13 14:22:34 +00:00
refactor(derive): Clarify parse is really about attributes
This commit is contained in:
parent
d9844002e5
commit
d8524b5ad1
3 changed files with 2 additions and 2 deletions
|
@ -13,7 +13,7 @@
|
|||
// MIT/Apache 2.0 license.
|
||||
|
||||
use crate::{
|
||||
parse::*,
|
||||
attr::*,
|
||||
utils::{inner_type, is_simple_ty, process_doc_comment, Sp, Ty},
|
||||
};
|
||||
|
||||
|
|
|
@ -22,10 +22,10 @@ use proc_macro::TokenStream;
|
|||
use proc_macro_error::proc_macro_error;
|
||||
use syn::{parse_macro_input, DeriveInput};
|
||||
|
||||
mod attr;
|
||||
mod derives;
|
||||
mod dummies;
|
||||
mod item;
|
||||
mod parse;
|
||||
mod utils;
|
||||
|
||||
/// Generates the `ValueEnum` impl.
|
||||
|
|
Loading…
Reference in a new issue