summaryrefslogtreecommitdiffstats
path: root/src/filestore
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2020-11-02 14:18:15 +0100
committerMatthias Beyer <mail@beyermatthias.de>2020-11-03 15:36:53 +0100
commitd0be4e55fa1e302c77966a92d515d5a0aa38cd91 (patch)
tree18a25e6201373987368be0fef916ff65ec3cfbae /src/filestore
parent60747b46e034a1ea74faa433a8183790c76a4001 (diff)
Make root visible to other types in module
Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
Diffstat (limited to 'src/filestore')
-rw-r--r--src/filestore/util.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/filestore/util.rs b/src/filestore/util.rs
index a8f4474..1add7a0 100644
--- a/src/filestore/util.rs
+++ b/src/filestore/util.rs
@@ -24,7 +24,7 @@ use crate::package::PackageVersion;
///
/// It can then be wrapped into the actual interface of this module with specialized functionality.
pub struct FileStoreImpl {
- root: PathBuf,
+ pub(in crate::filestore) root: PathBuf,
store: BTreeMap<PathBuf, Artifact>,
}