-
Notifications
You must be signed in to change notification settings - Fork 53
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
Return partial RSS feeds, rss_loose feature, resolves #22 #23
Conversation
I'm not planning on merging anything that breaks compatibility with That said, I think you should be able to replace most of your Thanks for the pull request! |
Another resource: https://doc.rust-lang.org/std/macro.cfg!.html |
@frewsxcv I've tried that of course ;) But, using |
@frewsxcv I understand not accepting patches that break stable compatibility, but I'd like to leave this open in case anyone else comes across the same problem as mine (and willing to use the nightly) and also for the time when the |
Tracking issue here: rust-lang/rust#15701 |
This has been resolved by #24. |
Hello,
Here is the pull request for the partial RSS feeds feature.
One thing I'm concerned about is I've had to use the feature flag
#![feature(stmt_expr_attributes)]
to be able to get enough control over the compiler to implement these changes, so currently this patch only works for the nightly branch until that feature is un-gated. So it might be a better idea to cook this patch until then.Still, others might find this useful regardless by leaving it here.
Please review and comment / merge.
Thanks!