pyo3/pyo3-derive-backend/src/lib.rs
konstin 29fdc05b60 Move the codegen into its own crate
This makes the code generatioin reusable from third party crates.
2018-05-01 20:24:32 +02:00

22 lines
360 B
Rust

// Copyright (c) 2017-present PyO3 Project and Contributors
#![recursion_limit = "1024"]
#[macro_use]
extern crate log;
#[macro_use]
extern crate quote;
extern crate syn;
extern crate proc_macro;
pub mod py_class;
pub mod py_impl;
pub mod py_proto;
pub mod py_method;
pub mod args;
pub mod defs;
pub mod func;
pub mod method;
pub mod module;
pub mod utils;