rust/hg-cpython/src/lib.rs
changeset 52060 8b7123c8947b
parent 50979 4c5f6e95df84
--- a/rust/hg-cpython/src/lib.rs	Wed Oct 16 19:14:30 2024 +0200
+++ b/rust/hg-cpython/src/lib.rs	Tue Oct 01 13:49:11 2024 +0200
@@ -45,6 +45,7 @@
 pub mod exceptions;
 mod pybytes_deref;
 pub mod revlog;
+pub mod update;
 pub mod utils;
 
 /// Revision as exposed to/from the Python layer.
@@ -100,6 +101,7 @@
     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, "update", update::init_module(py, &dotted_name)?)?;
     m.add(py, "GraphError", py.get_type::<exceptions::GraphError>())?;
     Ok(())
 });