pyo3/pyo3cls/Cargo.toml

27 lines
657 B
TOML
Raw Normal View History

[package]
name = "pyo3cls"
2018-08-20 12:30:52 +00:00
version = "0.4.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"
repository = "https://github.com/pyo3/pyo3.git"
2018-06-14 08:10:39 +00:00
documentation = "https://docs.rs/pyo3cls"
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"
[lib]
proc-macro = true
[dependencies]
2018-08-20 12:30:52 +00:00
quote= "0.6.6"
proc-macro2 = "0.4.13"
[dependencies.syn]
2018-08-20 12:30:52 +00:00
version= "0.14.8"
features=["full", "extra-traits"]
[dependencies.pyo3-derive-backend]
path = "../pyo3-derive-backend"
2018-08-20 12:30:52 +00:00
version = "=0.4.1"