1 | [package] |
2 | name = "pyo3-macros-backend" |
3 | version = "0.20.3" |
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 | |
13 | # Note: we use default-features = false for proc-macro related crates |
14 | # not to depend on proc-macro itself. |
15 | # See https://github.com/PyO3/pyo3/pull/810 for more. |
16 | [dependencies] |
17 | heck = "0.4" |
18 | proc-macro2 = { version = "1" , default-features = false } |
19 | pyo3-build-config = { path = "../pyo3-build-config" , version = "=0.20.3" , features = ["resolve-config" ] } |
20 | quote = { version = "1" , default-features = false } |
21 | |
22 | [dependencies.syn] |
23 | version = "2" |
24 | default-features = false |
25 | features = ["derive" , "parsing" , "printing" , "clone-impls" , "full" , "extra-traits" ] |
26 | |
27 | [lints] |
28 | workspace = true |
29 | |