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