mirror of
https://github.com/RustPython/Parser.git
synced 2025-08-30 15:18:02 +00:00
15 lines
403 B
Rust
15 lines
403 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;
|
|
#[cfg(feature = "location")]
|
|
pub mod source_code;
|
|
|
|
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;
|