This repository was archived by the owner on Nov 18, 2022. It is now read-only.
File tree 3 files changed +11
-5
lines changed
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';
16
16
17
17
import { RLSConfiguration } from './configuration' ;
18
18
import * as rls from './rls' ;
19
- import * as rustAnalyzer from './rustAnalyzer ' ;
19
+ import * as rustAnalyzer from './rust-analyzer ' ;
20
20
import { rustupUpdate } from './rustup' ;
21
21
import { startSpinner , stopSpinner } from './spinner' ;
22
22
import { 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';
6
6
import * as vs from 'vscode' ;
7
7
import * as lc from 'vscode-languageclient' ;
8
8
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' ;
13
13
14
14
const stat = promisify ( fs . stat ) ;
15
15
const mkdir = promisify ( fs . mkdir ) ;
You can’t perform that action at this time.
0 commit comments