view rust/hg-pyo3/src/lib.rs @ 52403:b61c259c5457

hg-pyo3: bump pyo3 to 0.23 Comes with significant API changes.
author Georges Racinet <georges.racinet@cloudcrane.io>
date Wed, 20 Nov 2024 10:58:19 +0100
parents 6673cec8605c
children c5128c541021
line wrap: on
line source

use pyo3::prelude::*;

#[pymodule]
fn pyo3_rustext(_py: Python<'_>, _m: &Bound<'_, PyModule>) -> PyResult<()> {
    Ok(())
}