pyo3/pyo3-macros-backend/Cargo.toml

32 lines
1.0 KiB
TOML
Raw Normal View History

[package]
2020-12-13 11:29:39 +00:00
name = "pyo3-macros-backend"
2024-04-18 08:59:02 +00:00
version = "0.21.2"
description = "Code generation for PyO3 package"
authors = ["PyO3 Project and Contributors <https://github.com/PyO3>"]
2018-05-30 13:03:31 +00:00
keywords = ["pyo3", "python", "cpython", "ffi"]
homepage = "https://github.com/pyo3/pyo3"
2018-09-08 22:19:55 +00:00
repository = "https://github.com/pyo3/pyo3"
categories = ["api-bindings", "development-tools::ffi"]
2023-04-15 18:01:31 +00:00
license = "MIT OR Apache-2.0"
edition = "2021"
# Note: we use default-features = false for proc-macro related crates
# not to depend on proc-macro itself.
# See https://github.com/PyO3/pyo3/pull/810 for more.
[dependencies]
2023-08-13 16:25:07 +00:00
heck = "0.4"
proc-macro2 = { version = "1", default-features = false }
2024-04-18 08:59:02 +00:00
pyo3-build-config = { path = "../pyo3-build-config", version = "=0.21.2", features = ["resolve-config"] }
quote = { version = "1", default-features = false }
[dependencies.syn]
2023-06-13 23:34:45 +00:00
version = "2"
default-features = false
features = ["derive", "parsing", "printing", "clone-impls", "full", "extra-traits"]
2022-01-11 07:50:02 +00:00
[lints]
workspace = true
[features]
experimental-async = []