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