1 | [package] |
2 | name = "pyo3-macros-backend" |
3 | version = "0.24.2" |
4 | description = "Code generation 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 | # Note: we use default-features = false for proc-macro related crates |
15 | # not to depend on proc-macro itself. |
16 | # See https://github.com/PyO3/pyo3/pull/810 for more. |
17 | [dependencies] |
18 | heck = "0.5" |
19 | proc-macro2 = { version = "1.0.60" , default-features = false } |
20 | pyo3-build-config = { path = "../pyo3-build-config" , version = "=0.24.2" , features = ["resolve-config" ] } |
21 | quote = { version = "1" , default-features = false } |
22 | |
23 | [dependencies.syn] |
24 | version = "2.0.59" # for `LitCStr` |
25 | default-features = false |
26 | features = ["derive" , "parsing" , "printing" , "clone-impls" , "full" , "extra-traits" ] |
27 | |
28 | [build-dependencies] |
29 | pyo3-build-config = { path = "../pyo3-build-config" , version = "=0.24.2" } |
30 | |
31 | [lints] |
32 | workspace = true |
33 | |
34 | [features] |
35 | experimental-async = [] |
36 | |