pyo3/pyo3-macros-backend/Cargo.toml

27 lines
865 B
TOML
Raw Normal View History

[package]
2020-12-13 11:29:39 +00:00
name = "pyo3-macros-backend"
2023-05-28 21:47:00 +00:00
version = "0.19.0"
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"]
license = "Apache-2.0"
2019-02-01 13:01:18 +00:00
edition = "2018"
# 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]
quote = { version = "1", default-features = false }
proc-macro2 = { version = "1", default-features = false }
[dependencies.syn]
version = "1.0.85"
default-features = false
features = ["derive", "parsing", "printing", "clone-impls", "full", "extra-traits"]
2022-01-11 07:50:02 +00:00
[features]
abi3 = []