From 5e3891c2559de5a6540d69bc14ded281484479f9 Mon Sep 17 00:00:00 2001 From: Aleksey Kladov Date: Wed, 9 Dec 2020 18:41:35 +0300 Subject: . --- crates/vfs/src/lib.rs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'crates/vfs/src/lib.rs') diff --git a/crates/vfs/src/lib.rs b/crates/vfs/src/lib.rs index cdf6f1fd0..a3be579a7 100644 --- a/crates/vfs/src/lib.rs +++ b/crates/vfs/src/lib.rs @@ -36,6 +36,7 @@ //! have a single `FileSet` which unions the two sources. mod vfs_path; mod path_interner; +mod anchored_path; pub mod file_set; pub mod loader; @@ -43,7 +44,10 @@ use std::{fmt, mem}; use crate::path_interner::PathInterner; -pub use crate::vfs_path::VfsPath; +pub use crate::{ + anchored_path::{AnchoredPath, AnchoredPathBuf}, + vfs_path::VfsPath, +}; pub use paths::{AbsPath, AbsPathBuf}; #[derive(Copy, Clone, Debug, Ord, PartialOrd, Eq, PartialEq, Hash)] -- cgit v1.2.3