rust/hg-cpython/src/lib.rs
changeset 48020 1194394510ba
parent 47953 8f031a274cd6
child 48839 7b068abe4aa2
--- a/rust/hg-cpython/src/lib.rs	Fri Sep 17 14:36:54 2021 +0200
+++ b/rust/hg-cpython/src/lib.rs	Mon Sep 20 12:52:32 2021 +0200
@@ -35,7 +35,6 @@
 pub mod dirstate;
 pub mod discovery;
 pub mod exceptions;
-pub mod parsers;
 mod pybytes_deref;
 pub mod revlog;
 pub mod utils;
@@ -59,11 +58,6 @@
     m.add(py, "discovery", discovery::init_module(py, &dotted_name)?)?;
     m.add(py, "dirstate", dirstate::init_module(py, &dotted_name)?)?;
     m.add(py, "revlog", revlog::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>())?;
     Ok(())
 });