We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I encountered this when integrating multirust-rs. The crate's name is multirust-rs, and the Cargo.toml for the crate has
multirust-rs
[lib] name = "multirust"
In the consumer's code, we use an extern crate multirust; due to the name config. No completions are provided for the multirust:: namespace.
extern crate multirust;
multirust::
The text was updated successfully, but these errors were encountered:
Another example here is the rust-crypto crate which has lib.name = "crypto"
rust-crypto
lib.name = "crypto"
Sorry, something went wrong.
Merge pull request #469 from jaxx/#449
e5b72c6
Read packages source when library name is different from package name
No branches or pull requests
I encountered this when integrating multirust-rs. The crate's name is
multirust-rs
, and the Cargo.toml for the crate hasIn the consumer's code, we use an
extern crate multirust;
due to the name config. No completions are provided for themultirust::
namespace.The text was updated successfully, but these errors were encountered: