aboutsummaryrefslogtreecommitdiff
path: root/crates/vfs
diff options
context:
space:
mode:
authorAleksey Kladov <[email protected]>2020-07-21 11:52:51 +0100
committerAleksey Kladov <[email protected]>2020-07-21 11:52:51 +0100
commit39a2bc5e3cd86876eef6f3a96bef188f88e85114 (patch)
tree6e655b139235d23c7640e404a10eb543ef85caac /crates/vfs
parent818aeb8a242bba5d8947ce2960e1af27d998f4fc (diff)
Expose package roots more directly
Diffstat (limited to 'crates/vfs')
-rw-r--r--crates/vfs/src/loader.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/vfs/src/loader.rs b/crates/vfs/src/loader.rs
index 04e257f53..40cf96020 100644
--- a/crates/vfs/src/loader.rs
+++ b/crates/vfs/src/loader.rs
@@ -17,7 +17,7 @@ pub enum Entry {
17/// * it is not under `exclude` path 17/// * it is not under `exclude` path
18/// 18///
19/// If many include/exclude paths match, the longest one wins. 19/// If many include/exclude paths match, the longest one wins.
20#[derive(Debug, Clone)] 20#[derive(Debug, Clone, Default)]
21pub struct Directories { 21pub struct Directories {
22 pub extensions: Vec<String>, 22 pub extensions: Vec<String>,
23 pub include: Vec<AbsPathBuf>, 23 pub include: Vec<AbsPathBuf>,