forked from Rust-related/RustPython
25 lines
676 B
TOML
25 lines
676 B
TOML
[package]
|
|
name = "rustpython-derive"
|
|
version = "0.1.2"
|
|
description = "Rust language extensions and macros specific to rustpython."
|
|
authors = ["RustPython Team"]
|
|
repository = "https://github.com/RustPython/RustPython"
|
|
license = "MIT"
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
proc-macro = true
|
|
|
|
[dependencies]
|
|
syn = { version = "1.0", features = ["full", "extra-traits"] }
|
|
syn-ext = { version = "0.3.0", features = ["full"] }
|
|
quote = "1.0"
|
|
proc-macro2 = "1.0"
|
|
rustpython-compiler = { path = "../compiler/porcelain", version = "0.1.1" }
|
|
rustpython-bytecode = { path = "../bytecode", version = "0.1.1" }
|
|
maplit = "1.0"
|
|
once_cell = "1.8.0"
|
|
textwrap = "0.13.4"
|
|
indexmap = "^1"
|
|
serde_json = "1.0.68"
|