RustPython-Parser/format/src/lib.rs
Micha Reiser a983f4383f
Add format and cformat modules from RustPython (#24)
* Add `format` and `cformat` modules from `RustPython`

* Introduce `rustpython-format` crate

* Remove unused dependencies
2023-05-12 18:27:05 +09:00

4 lines
56 B
Rust

pub mod cformat;
mod format;
pub use crate::format::*;