ruff/crates/ruff_notebook/src/lib.rs
Dhruv Manilawala 727e389cac
Add CellOffsets abstraction (#8814)
Refactor `Notebook::cell_offsets` to use an abstract struct for storing
the cell offsets. This will allow us to add useful methods on it.
2023-11-22 15:27:00 +00:00

11 lines
176 B
Rust

//! Utils for reading and writing jupyter notebooks
pub use cell::*;
pub use index::*;
pub use notebook::*;
pub use schema::*;
mod cell;
mod index;
mod notebook;
mod schema;