27 lines
865 B
TOML
27 lines
865 B
TOML
[package]
|
|
name = "pyo3-macros-backend"
|
|
version = "0.18.3"
|
|
description = "Code generation for PyO3 package"
|
|
authors = ["PyO3 Project and Contributors <https://github.com/PyO3>"]
|
|
keywords = ["pyo3", "python", "cpython", "ffi"]
|
|
homepage = "https://github.com/pyo3/pyo3"
|
|
repository = "https://github.com/pyo3/pyo3"
|
|
categories = ["api-bindings", "development-tools::ffi"]
|
|
license = "Apache-2.0"
|
|
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.56"
|
|
default-features = false
|
|
features = ["derive", "parsing", "printing", "clone-impls", "full", "extra-traits"]
|
|
|
|
[features]
|
|
abi3 = []
|