ganesh 0.28.1

Minimization and sampling in Rust, simplified
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#![cfg(feature = "python")]

#[pyo3::pymodule]
mod downstream_extension {
    #[pymodule_export]
    use ganesh::python::ganesh;
}

#[test]
fn declarative_submodule_can_be_reexported_downstream() {
    // Compilation of the module above is the contract under test. Keeping this as an
    // integration test also catches accidental reliance on crate-private items.
}