Creating rust dependencies tree view

This commit is contained in:
bruno-ortiz 2022-02-25 21:37:55 -03:00 committed by Bruno Ortiz
parent 09e0a00d36
commit d01fc6405b
4 changed files with 115 additions and 6 deletions

View file

@ -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,