mirror of
https://github.com/astral-sh/ruff
synced 2026-01-21 13:30:49 -05:00
14 lines
353 B
Rust
14 lines
353 B
Rust
#![doc(html_logo_url = "https://raw.githubusercontent.com/RustPython/RustPython/main/logo.png")]
|
|
#![doc(html_root_url = "https://docs.rs/rustpython-parser-core/")]
|
|
|
|
mod error;
|
|
mod format;
|
|
pub mod mode;
|
|
|
|
pub use error::BaseError;
|
|
pub use format::ConversionFlag;
|
|
pub use mode::Mode;
|
|
|
|
// re-export our public interface
|
|
pub use ruff_text_size as text_size;
|