pyo3/pyo3-derive-backend/Cargo.toml
kngwyu 686d006bea Specify proc-macro2 version
Since we can't compile 0.4.8 in current nightly.
See
9f0a28a9c9
for upstream change.
2018-07-24 17:17:11 +09:00

24 lines
645 B
TOML

[package]
name = "pyo3-derive-backend"
version = "0.3.2"
description = "Code generation for PyO3 package"
authors = ["PyO3 Project and Contributors <https://github.com/PyO3>"]
keywords = ["pyo3", "python", "cpython", "ffi"]
homepage = "https://github.com/pyo3/pyo3"
repository = "https://github.com/pyo3/pyo3.git"
documentation = "https://pyo3.github.io/pyo3/guide/"
categories = ["api-bindings", "development-tools::ffi"]
license = "Apache-2.0"
[dependencies]
log="0.4"
quote="0.6"
[dependencies.proc-macro2]
version = "0.4.9"
features = ["nightly"]
[dependencies.syn]
version="0.14"
features=["full", "parsing", "printing", "extra-traits"]