Files
RustPython/derive/Cargo.toml
2019-10-07 20:54:22 +02:00

24 lines
626 B
TOML

[package]
name = "rustpython-derive"
version = "0.1.1"
description = "Rust language extensions and macros specific to rustpython."
authors = ["RustPython Team"]
repository = "https://github.com/RustPython/RustPython"
license = "MIT"
edition = "2018"
[lib]
proc-macro = true
[features]
default = ["proc-macro-hack"]
[dependencies]
syn = { version = "0.15.29", features = ["full"] }
quote = "0.6.11"
proc-macro2 = "0.4.27"
rustpython-compiler = { path = "../compiler", version = "0.1.1" }
rustpython-bytecode = { path = "../bytecode", version = "0.1.1" }
proc-macro-hack = { version = "0.5", optional = true }
maplit = "1.0"