-
Notifications
You must be signed in to change notification settings - Fork 10
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
Add no_std feature? #15
Comments
Hum... Do you know any project where it could be useful? Because unless there is one, I'm not sure if it's worth it (even though it'd likely be a very small amount of code). I'm not against it, just not convinced. |
No, spontaneously I cannot come up with a use cases. Probably there isn't one. I guess there won't be many IoT device developers who need a template engine. :) |
Who knows? World is a surprising place. |
Just in case you decide to have a MSRV 1.81: rust-lang/rust#103765 |
Oh nice, thanks for the information! |
I think the generated code can easily be
#![no_std]
. We only needstd
toimpl std::error::Error for rinja::Error
. We needalloc
for a few filters. Both use cases can be feature-gated. Then I think, we can add the features ↓ and be useful to a marginally wider audience.What do you think?
The text was updated successfully, but these errors were encountered: