Skip to content

Commit

Permalink
Remove unused attribute macro (#64)
Browse files Browse the repository at this point in the history
  • Loading branch information
yunjhongwu authored Mar 6, 2024
1 parent dbdb790 commit 2acd5cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion strong-type-derive/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ use syn::{parse_macro_input, DeriveInput};

use crate::strong_type::expand_strong_type;

#[proc_macro_derive(StrongType, attributes(strong_type, custom_underlying))]
#[proc_macro_derive(StrongType, attributes(strong_type))]
pub fn strong_type(input: TokenStream) -> TokenStream {
let input = parse_macro_input!(input as DeriveInput);
expand_strong_type(input).into()
Expand Down

0 comments on commit 2acd5cb

Please sign in to comment.