Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix atoms module name generated by the NifStruct derive macro #585

Merged
merged 1 commit into from
Feb 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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