rust/hg-cpython/src/lib.rs
changeset 42747 760a7851e9ba
parent 42609 326fdce22fb2
child 42752 30320c7bf79f
--- a/rust/hg-cpython/src/lib.rs	Mon Jul 08 18:01:39 2019 +0200
+++ b/rust/hg-cpython/src/lib.rs	Wed Jul 10 10:16:28 2019 +0200
@@ -29,6 +29,7 @@
 mod conversion;
 pub mod dagops;
 pub mod dirstate;
+pub mod parsers;
 pub mod discovery;
 pub mod exceptions;
 pub mod filepatterns;
@@ -50,6 +51,11 @@
         "filepatterns",
         filepatterns::init_module(py, &dotted_name)?,
     )?;
+    m.add(
+        py,
+        "parsers",
+        parsers::init_parsers_module(py, &dotted_name)?,
+    )?;
     m.add(py, "GraphError", py.get_type::<exceptions::GraphError>())?;
     m.add(
         py,