1[package]
2name = "pyo3-macros-backend"
3version = "0.24.2"
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"
12rust-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]
18heck = "0.5"
19proc-macro2 = { version = "1.0.60", default-features = false }
20pyo3-build-config = { path = "../pyo3-build-config", version = "=0.24.2", features = ["resolve-config"] }
21quote = { version = "1", default-features = false }
22
23[dependencies.syn]
24version = "2.0.59" # for `LitCStr`
25default-features = false
26features = ["derive", "parsing", "printing", "clone-impls", "full", "extra-traits"]
27
28[build-dependencies]
29pyo3-build-config = { path = "../pyo3-build-config", version = "=0.24.2" }
30
31[lints]
32workspace = true
33
34[features]
35experimental-async = []
36