1[package]
2name = "pyo3-macros"
3version = "0.20.3"
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"
12
13[lib]
14proc-macro = true
15
16[features]
17multiple-pymethods = []
18
19[dependencies]
20proc-macro2 = { version = "1", default-features = false }
21quote = "1"
22syn = { version = "2", features = ["full", "extra-traits"] }
23pyo3-macros-backend = { path = "../pyo3-macros-backend", version = "=0.20.3" }
24
25[lints]
26workspace = true
27