summaryrefslogtreecommitdiff
path: root/support/texlab/crates/base-db/src/deps.rs
diff options
context:
space:
mode:
Diffstat (limited to 'support/texlab/crates/base-db/src/deps.rs')
-rw-r--r--support/texlab/crates/base-db/src/deps.rs11
1 files changed, 11 insertions, 0 deletions
diff --git a/support/texlab/crates/base-db/src/deps.rs b/support/texlab/crates/base-db/src/deps.rs
new file mode 100644
index 0000000000..06689a0df2
--- /dev/null
+++ b/support/texlab/crates/base-db/src/deps.rs
@@ -0,0 +1,11 @@
+mod discover;
+mod graph;
+mod project;
+mod root;
+
+pub use self::{
+ discover::{discover, watch},
+ graph::{DirectLinkData, Edge, EdgeData, Graph},
+ project::{parents, Project},
+ root::ProjectRoot,
+};