-
Notifications
You must be signed in to change notification settings - Fork 20
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
Fails on some rust imports #33
Comments
Chrome or Firefox? |
Chrome at least. |
I believe this has been fixed on the newest versions, which are not published on Chrome yet. I had to change the permissions for Firefox, however, because Chrome automatically grants some permissions which we weren't asking and Firefox doesn't -- which made the extension don't work unless we've changed that. Now if I publish the latest releases to Chrome it will prompt all users to accept the new permissions, which is very annoying. Since I'm working on a rewrite of some parts which will change the permissions anyway, I thought I would delay publishing the new Chrome versions until then, but it is taking more time than I had planned. So, what should I do? |
It's not that important, I can wait :) |
The rewrite I mentioned earlier was completed today, but it was so much easier than i was imagining that I'm afraid I may have commited stupid mistakes, please let me know if I did. (And please reopen this issue if it is not solved.) |
Not the same bug. But I think I know how to fix this. |
Nice, thanks for taking a look. I really love this extension! |
Btw, Rust is getting nested group imports: rust-lang/rfcs#2128 |
Such complexity. Much problem. Is that only for local/relative modules, @Boscop, or for external crates also? What is exactly a crate, a module, whatever? |
Basically, crates are compilation units (either lib or bin) and when you do The new nested syntax is just syntactic sugar, so you can write many imports from different submodules of a module/crate in fewer lines.
|
Someone wrote a guide: |
E.g.:
use database_url::extract_
database_url;
The text was updated successfully, but these errors were encountered: