1[package]
2name = "pyo3-macros"
3version = "0.24.2"
4description = "Proc macros for PyO3 package"
5authors = ["PyO3 Project and Contributors <https://github.com/PyO3>"]
6keywords = ["pyo3", "python", "cpython", "ffi"]
7homepage = "https://github.com/pyo3/pyo3"
8repository = "https://github.com/pyo3/pyo3"
9categories = ["api-bindings", "development-tools::ffi"]
10license = "MIT OR Apache-2.0"
11edition = "2021"
12rust-version = "1.63"
13
14[lib]
15proc-macro = true
16
17[features]
18multiple-pymethods = []
19experimental-async = ["pyo3-macros-backend/experimental-async"]
20
21[dependencies]
22proc-macro2 = { version = "1.0.60", default-features = false }
23quote = "1"
24syn = { version = "2", features = ["full", "extra-traits"] }
25pyo3-macros-backend = { path = "../pyo3-macros-backend", version = "=0.24.2" }
26
27[lints]
28workspace = true
29