Separate rustpython_ast_pyo3

This commit is contained in:
Jeong YunWon 2023-05-23 02:24:03 +09:00
parent b81273e9bc
commit 7d384d88d0
13 changed files with 3209 additions and 3208 deletions

5
ast-pyo3/src/lib.rs Normal file
View file

@ -0,0 +1,5 @@
mod py_ast;
#[cfg(feature = "wrapper")]
pub mod wrapper;
pub use py_ast::{init, PyNode, ToPyAst};