1[package]
2name = "pyo3-macros-backend"
3version = "0.20.3"
4description = "Code generation 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# 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]
17heck = "0.4"
18proc-macro2 = { version = "1", default-features = false }
19pyo3-build-config = { path = "../pyo3-build-config", version = "=0.20.3", features = ["resolve-config"] }
20quote = { version = "1", default-features = false }
21
22[dependencies.syn]
23version = "2"
24default-features = false
25features = ["derive", "parsing", "printing", "clone-impls", "full", "extra-traits"]
26
27[lints]
28workspace = true
29