1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// Copyright (c) 2017-present PyO3 Project and Contributors
//! This crate contains the implementation of the proc macro attributes

#![recursion_limit = "1024"]

#[macro_use]
extern crate quote;
#[macro_use]
extern crate syn;
extern crate proc_macro;
extern crate proc_macro2;

pub mod args;
pub mod defs;
pub mod func;
pub mod method;
pub mod module;
pub mod py_class;
pub mod py_impl;
pub mod py_method;
pub mod py_proto;
pub mod utils;