pyo3/pyo3-macros/Cargo.toml

27 lines
766 B
TOML
Raw Normal View History

[package]
2020-12-13 11:29:39 +00:00
name = "pyo3-macros"
2022-05-15 19:31:00 +00:00
version = "0.16.5"
2017-07-23 18:17:10 +00:00
description = "Proc macros 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"]
2017-07-23 18:17:10 +00:00
homepage = "https://github.com/pyo3/pyo3"
2018-09-08 22:19:55 +00:00
repository = "https://github.com/pyo3/pyo3"
2017-07-23 18:17:10 +00:00
categories = ["api-bindings", "development-tools::ffi"]
2017-07-23 18:21:01 +00:00
license = "Apache-2.0"
2019-02-01 13:01:18 +00:00
edition = "2018"
[lib]
proc-macro = true
2021-08-19 20:55:39 +00:00
[features]
multiple-pymethods = []
2022-01-11 07:50:02 +00:00
pyproto = ["pyo3-macros-backend/pyproto"]
abi3 = ["pyo3-macros-backend/abi3"]
2022-01-11 07:50:02 +00:00
[dependencies]
2021-12-28 01:25:01 +00:00
proc-macro2 = { version = "1", default-features = false }
2019-08-11 12:16:02 +00:00
quote = "1"
2022-03-21 23:53:08 +00:00
syn = { version = "1.0.56", features = ["full", "extra-traits"] }
2022-05-15 19:31:00 +00:00
pyo3-macros-backend = { path = "../pyo3-macros-backend", version = "=0.16.5" }