Skip to main content

dlpack_rs/
lib.rs

1//! Portable DLPack bindings: raw FFI ([`ffi`]), safe builders ([`safe`]),
2//! and optional pyo3 capsule glue (feature `pyo3`).
3pub mod ffi;
4#[cfg(feature = "pyo3")]
5pub mod pyo3_glue;
6pub mod safe;
7mod sys;