Skip to main content

rustpython_compiler_core/
lib.rs

1#![no_std]
2#![doc(html_logo_url = "https://raw.githubusercontent.com/RustPython/RustPython/main/logo.png")]
3#![doc(html_root_url = "https://docs.rs/rustpython-compiler-core/")]
4
5extern crate alloc;
6
7pub mod bytecode;
8pub mod frozen;
9pub mod marshal;
10mod mode;
11pub mod varint;
12
13pub use mode::Mode;
14
15pub use ruff_source_file::{
16    LineIndex, OneIndexed, PositionEncoding, SourceFile, SourceFileBuilder, SourceLocation,
17};