2018-04-01 13:04:45 +00:00
|
|
|
[package]
|
2020-12-13 11:29:39 +00:00
|
|
|
name = "pyo3-macros-backend"
|
2024-05-12 18:30:08 +00:00
|
|
|
version = "0.22.0-dev"
|
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"]
|
2023-04-15 18:01:31 +00:00
|
|
|
license = "MIT OR Apache-2.0"
|
2023-06-07 18:49:27 +00:00
|
|
|
edition = "2021"
|
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]
|
2024-04-18 10:22:34 +00:00
|
|
|
heck = "0.5"
|
2024-06-21 10:05:09 +00:00
|
|
|
proc-macro2 = { version = "1.0.60", default-features = false }
|
2024-05-12 18:30:08 +00:00
|
|
|
pyo3-build-config = { path = "../pyo3-build-config", version = "=0.22.0-dev", features = ["resolve-config"] }
|
2024-02-13 21:52:53 +00:00
|
|
|
quote = { version = "1", default-features = false }
|
2020-03-16 10:43:19 +00:00
|
|
|
|
|
|
|
[dependencies.syn]
|
2024-06-21 08:49:33 +00:00
|
|
|
version = "2.0.59" # for `LitCStr`
|
2020-03-16 10:43:19 +00:00
|
|
|
default-features = false
|
|
|
|
features = ["derive", "parsing", "printing", "clone-impls", "full", "extra-traits"]
|
2022-01-11 07:50:02 +00:00
|
|
|
|
2024-06-21 08:49:33 +00:00
|
|
|
[build-dependencies]
|
|
|
|
pyo3-build-config = { path = "../pyo3-build-config", version = "=0.22.0-dev" }
|
|
|
|
|
2023-11-17 15:21:09 +00:00
|
|
|
[lints]
|
|
|
|
workspace = true
|
2024-03-06 00:54:45 +00:00
|
|
|
|
|
|
|
[features]
|
|
|
|
experimental-async = []
|
2024-05-12 18:30:08 +00:00
|
|
|
gil-refs = []
|