mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-09-28 21:05:02 +00:00
Creating rust dependencies tree view
This commit is contained in:
parent
09e0a00d36
commit
d01fc6405b
4 changed files with 115 additions and 6 deletions
|
@ -3,8 +3,8 @@ import * as lc from "vscode-languageclient/node";
|
|||
import * as ra from "./lsp_ext";
|
||||
import * as path from "path";
|
||||
|
||||
import {Config, prepareVSCodeConfig} from "./config";
|
||||
import {createClient} from "./client";
|
||||
import {Config, prepareVSCodeConfig} from './config';
|
||||
import {createClient} from './client';
|
||||
import {
|
||||
executeDiscoverProject,
|
||||
isRustDocument,
|
||||
|
@ -12,8 +12,10 @@ import {
|
|||
LazyOutputChannel,
|
||||
log,
|
||||
RustEditor,
|
||||
} from "./util";
|
||||
import {ServerStatusParams} from "./lsp_ext";
|
||||
} from './util';
|
||||
import {ServerStatusParams} from './lsp_ext';
|
||||
import { Dependency, DependencyFile, RustDependenciesProvider, DependencyId } from './dependencies_provider';
|
||||
import { execRevealDependency } from './commands';
|
||||
import {
|
||||
Dependency,
|
||||
DependencyFile,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue