-
Notifications
You must be signed in to change notification settings - Fork 136
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
use new (1.30.0) stable rust feature #[macro_export(local_inner_macros)]
#159
Comments
since there are so many of these it may be just as simple to use the new |
for reference rust >= 1.30.0 will handle |
@dgrunwald I don't mean to be a bother, but I noticed there are some passing prs with no activity in this repo since 2017. Is this repo still actively maintained? |
@softprops No, it's not really maintained anymore. Probably most of the macro stuff should be re-done using procedural macros instead; especially |
@dgrunwald that's for the response. Context for my interest here is I'm trying to work with the maintainer of the rust crowbar crate move forward with the newly stable macro features but it depended on this crate so I reached out. I'll see what we can do! |
I have a PR that makes it work with 2018 edition: #167. |
announced here rust is updating the way users access exported macros and the way macro authors export them noted in the release notes
pending docs for this feature live here
I've started experimenting with this in the rust crowbar crate but have found that in practice it may require this crate to use the
local_inner_macros
way of exporting macros so crowbar users won't have touse
this crates helper macros explicitly iliana/rust-crowbar#46 (comment)The text was updated successfully, but these errors were encountered: