pyo3/pyo3cls/Cargo.toml

21 lines
630 B
TOML
Raw Normal View History

[package]
name = "pyo3cls"
2019-04-23 16:55:35 +00:00
version = "0.7.0-alpha.1"
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
[dependencies]
2018-10-29 16:36:06 +00:00
quote= "0.6.9"
proc-macro2 = "0.4.20"
syn = { version = "0.15.15", features = ["full", "extra-traits"] }
2019-04-23 16:55:35 +00:00
pyo3-derive-backend = { path = "../pyo3-derive-backend", version = "=0.7.0-alpha.1" }