diff rust/hg-pyo3/src/lib.rs @ 52776:6fa23eed335b

rust-pyo3: PyFnCache This is a translitteration of the `PyFnCache` from `hg-cpython/src/revlog.rs`. To match the Python code organization, we put it its own top-level Rust module. Our immediate use case is for the `revlog` module, but we believe it will eventually be useful elsewhere.
author Georges Racinet <georges.racinet@cloudcrane.io>
date Tue, 24 Dec 2024 18:16:38 +0100
parents 264047bf4b9b
children 71ebe880f24a
line wrap: on
line diff
--- a/rust/hg-pyo3/src/lib.rs	Tue Dec 24 18:02:11 2024 +0100
+++ b/rust/hg-pyo3/src/lib.rs	Tue Dec 24 18:16:38 2024 +0100
@@ -6,6 +6,7 @@
 mod exceptions;
 mod revision;
 mod revlog;
+mod store;
 mod util;
 
 #[pymodule]