diff options
author | Aleksey Kladov <[email protected]> | 2019-11-03 22:14:17 +0000 |
---|---|---|
committer | Aleksey Kladov <[email protected]> | 2019-11-03 22:14:17 +0000 |
commit | 3603d0213480c7b3423345d21243397eb904a073 (patch) | |
tree | fb385c03f3fdd627e9a8a97b329fac347c818e84 /crates/ra_hir/src | |
parent | e811be0fdca02b8aafc5da0109c655030232b4af (diff) |
Reexport relative_path from ra_db
Diffstat (limited to 'crates/ra_hir/src')
-rw-r--r-- | crates/ra_hir/src/mock.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/crates/ra_hir/src/mock.rs b/crates/ra_hir/src/mock.rs index 4c89c8d38..8d98f88ce 100644 --- a/crates/ra_hir/src/mock.rs +++ b/crates/ra_hir/src/mock.rs | |||
@@ -7,9 +7,8 @@ use parking_lot::Mutex; | |||
7 | use ra_cfg::CfgOptions; | 7 | use ra_cfg::CfgOptions; |
8 | use ra_db::{ | 8 | use ra_db::{ |
9 | salsa, CrateGraph, CrateId, Edition, FileId, FileLoader, FileLoaderDelegate, FilePosition, | 9 | salsa, CrateGraph, CrateId, Edition, FileId, FileLoader, FileLoaderDelegate, FilePosition, |
10 | SourceDatabase, SourceDatabaseExt, SourceRoot, SourceRootId, | 10 | RelativePath, RelativePathBuf, SourceDatabase, SourceDatabaseExt, SourceRoot, SourceRootId, |
11 | }; | 11 | }; |
12 | use relative_path::{RelativePath, RelativePathBuf}; | ||
13 | use rustc_hash::FxHashMap; | 12 | use rustc_hash::FxHashMap; |
14 | use test_utils::{extract_offset, parse_fixture, CURSOR_MARKER}; | 13 | use test_utils::{extract_offset, parse_fixture, CURSOR_MARKER}; |
15 | 14 | ||