Remove #[derive(Debug)]

For some reason, it doesn't allow publishing a new release.
This commit is contained in:
Hirrolot 2022-10-06 23:08:34 +06:00
parent e5d08c168e
commit d17ebafb38
2 changed files with 1 additions and 2 deletions

View file

@ -3,7 +3,6 @@ use crate::{
fields_parse::ParserType, rename_rules::RenameRule, Result,
};
#[derive(Debug)]
pub(crate) struct CommandEnum {
pub prefix: String,
pub description: Option<String>,

View file

@ -3,7 +3,7 @@ use syn::{Fields, FieldsNamed, FieldsUnnamed, Type};
use crate::{attr::AttrValue, error::Result};
#[derive(Debug, Clone)]
#[derive(Clone)]
pub(crate) enum ParserType {
Default,
Split { separator: Option<String> },