Skip to content

Commit

Permalink
Fix atoms module name generated by the NifStruct derive macro
Browse files Browse the repository at this point in the history
This is related to #573, but
now the macro is given a warning even with the annotation to ignore.

So this is a fix that turns the atoms module name generated by the macro
in a snake case name.
  • Loading branch information
philss committed Jan 5, 2024
1 parent 6e803c0 commit 66be05d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
5 changes: 4 additions & 1 deletion rustler_codegen/src/context.rs
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,10 @@ impl<'a> Context<'a> {
}

pub fn atoms_module_name(&self, span: Span) -> Ident {
Ident::new(&format!("RUSTLER_ATOMS_{}", self.ident), span)
Ident::new(
&format!("rustler_atoms_{}", self.ident).to_snake_case(),
span,
)
}

pub fn encode(&self) -> bool {
Expand Down
1 change: 0 additions & 1 deletion rustler_codegen/src/ex_struct.rs
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,6 @@ pub fn transcoder_decorator(ast: &syn::DeriveInput, add_exception: bool) -> Toke
};

let gen = quote! {
#[allow(non_snake_case)]
mod #atoms_module_name {
#atom_defs
}
Expand Down

0 comments on commit 66be05d

Please sign in to comment.