Skip to content

Commit

Permalink
Fix bad import when customise feature is disabled
Browse files Browse the repository at this point in the history
  • Loading branch information
cyqsimon committed Oct 16, 2024
1 parent 9e158a5 commit 98329c7
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion documented-macros/src/derive_impl.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,10 @@ use syn::{
Fields, Ident,
};

#[cfg(feature = "customise")]
use crate::config::derive::get_customisations_from_attrs;
use crate::{
config::derive::{get_customisations_from_attrs, DeriveConfig},
config::derive::DeriveConfig,
util::{crate_module_path, get_docs},
};

Expand Down

0 comments on commit 98329c7

Please sign in to comment.