diff -r a83e24c3af6b -r 1194394510ba rust/hg-cpython/src/lib.rs --- 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::())?; Ok(()) });