Mercurial > public > mercurial-scm > hg-stable
diff rust/hg-pyo3/src/lib.rs @ 52854:28f0f00b5dbd
rust-pyo3: rename the `util` file to `utils`
This is the convention in the rust code, since all other places are plural.
author | Rapha?l Gom?s <rgomes@octobus.net> |
---|---|
date | Sun, 05 Jan 2025 23:39:02 +0100 |
parents | b8cd277d26f4 |
children | d0c0ad938eb9 |
line wrap: on
line diff
--- a/rust/hg-pyo3/src/lib.rs Tue Jan 07 17:37:06 2025 +0100 +++ b/rust/hg-pyo3/src/lib.rs Sun Jan 05 23:39:02 2025 +0100 @@ -7,9 +7,9 @@ mod node; mod revision; mod revlog; +mod store; mod transaction; -mod store; -mod util; +mod utils; #[pymodule] fn pyo3_rustext(py: Python<'_>, m: &Bound<'_, PyModule>) -> PyResult<()> {