mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-09-28 04:44:57 +00:00
Remove ImportSource::ExternCrate as the fixed point loop can't affect it
This commit is contained in:
parent
5982d9c420
commit
f7ca085690
4 changed files with 102 additions and 138 deletions
|
@ -288,6 +288,11 @@ pub struct CrateData {
|
|||
/// The cfg options that could be used by the crate
|
||||
pub potential_cfg_options: Option<Arc<CfgOptions>>,
|
||||
pub env: Env,
|
||||
/// The dependencies of this crate.
|
||||
///
|
||||
/// Note that this may contain more dependencies than the crate actually uses.
|
||||
/// A common example is the test crate which is included but only actually is active when
|
||||
/// declared in source via `extern crate test`.
|
||||
pub dependencies: Vec<Dependency>,
|
||||
pub origin: CrateOrigin,
|
||||
pub is_proc_macro: bool,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue