1//! This crate contains the implementation of the proc macro attributes
23#![warn(elided_lifetimes_in_paths, unused_lifetimes)]
4#![cfg_attr(docsrs, feature(doc_cfg, doc_auto_cfg))]
5#![recursion_limit = "1024"]
67// Listed first so that macros in this module are available in the rest of the crate.
8#[macro_use]
9mod utils;
1011mod attributes;
12mod deprecations;
13mod frompyobject;
14mod intopyobject;
15mod konst;
16mod method;
17mod module;
18mod params;
19mod pyclass;
20mod pyfunction;
21mod pyimpl;
22mod pymethod;
23mod pyversions;
24mod quotes;
2526pub use frompyobject::build_derive_from_pyobject;
27pub use intopyobject::build_derive_into_pyobject;
28pub use module::{pymodule_function_impl, pymodule_module_impl, PyModuleOptions};
29pub use pyclass::{build_py_class, build_py_enum, PyClassArgs};
30pub use pyfunction::{build_py_function, PyFunctionOptions};
31pub use pyimpl::{build_py_methods, PyClassMethodsType};
32pub use utils::get_doc;