2018-04-01 13:04:45 +00:00
|
|
|
[package]
|
2020-12-13 11:29:39 +00:00
|
|
|
name = "pyo3-macros-backend"
|
2021-01-24 11:39:17 +00:00
|
|
|
version = "0.13.2"
|
2018-04-01 13:04:45 +00:00
|
|
|
description = "Code generation for PyO3 package"
|
2018-05-14 16:53:31 +00:00
|
|
|
authors = ["PyO3 Project and Contributors <https://github.com/PyO3>"]
|
2018-05-30 13:03:31 +00:00
|
|
|
keywords = ["pyo3", "python", "cpython", "ffi"]
|
2018-04-01 13:04:45 +00:00
|
|
|
homepage = "https://github.com/pyo3/pyo3"
|
2018-09-08 22:19:55 +00:00
|
|
|
repository = "https://github.com/pyo3/pyo3"
|
2018-04-01 13:04:45 +00:00
|
|
|
categories = ["api-bindings", "development-tools::ffi"]
|
|
|
|
license = "Apache-2.0"
|
2019-02-01 13:01:18 +00:00
|
|
|
edition = "2018"
|
2018-04-01 13:04:45 +00:00
|
|
|
|
2020-03-16 10:43:19 +00:00
|
|
|
# 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.
|
2018-04-01 13:04:45 +00:00
|
|
|
[dependencies]
|
2020-03-16 10:43:19 +00:00
|
|
|
quote = { version = "1", default-features = false }
|
|
|
|
proc-macro2 = { version = "1", default-features = false }
|
|
|
|
|
|
|
|
[dependencies.syn]
|
|
|
|
version = "1"
|
|
|
|
default-features = false
|
|
|
|
features = ["derive", "parsing", "printing", "clone-impls", "full", "extra-traits"]
|
2021-05-19 20:50:25 +00:00
|
|
|
|
|
|
|
[build-dependencies]
|
2021-05-21 07:34:51 +00:00
|
|
|
pyo3-build-config = { path = "../pyo3-build-config", version = "=0.14.0-alpha.0" }
|