This repository was archived by the owner on Nov 18, 2022. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +11
-5
lines changed Expand file tree Collapse file tree 3 files changed +11
-5
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ import * as lc from 'vscode-languageclient';
1616
1717import { RLSConfiguration } from './configuration' ;
1818import * as rls from './rls' ;
19- import * as rustAnalyzer from './rustAnalyzer ' ;
19+ import * as rustAnalyzer from './rust-analyzer ' ;
2020import { rustupUpdate } from './rustup' ;
2121import { startSpinner , stopSpinner } from './spinner' ;
2222import { activateTaskProvider , Execution , runRlsCommand } from './tasks' ;
Original file line number Diff line number Diff line change 1+ export {
2+ createLanguageClient ,
3+ getServer ,
4+ setupClient ,
5+ setupProgress ,
6+ } from './rustAnalyzer' ;
Original file line number Diff line number Diff line change @@ -6,10 +6,10 @@ import { promisify } from 'util';
66import * as vs from 'vscode' ;
77import * as lc from 'vscode-languageclient' ;
88
9- import { WorkspaceProgress } from './extension' ;
10- import { download , fetchRelease } from './net' ;
11- import * as rustup from './rustup' ;
12- import { Observable } from './utils/observable' ;
9+ import { WorkspaceProgress } from '.. /extension' ;
10+ import { download , fetchRelease } from '.. /net' ;
11+ import * as rustup from '.. /rustup' ;
12+ import { Observable } from '.. /utils/observable' ;
1313
1414const stat = promisify ( fs . stat ) ;
1515const mkdir = promisify ( fs . mkdir ) ;
You can’t perform that action at this time.
0 commit comments