mirror of
https://github.com/RustPython/RustPython.git
synced 2026-06-02 19:39:49 +09:00
26 lines
730 B
TOML
26 lines
730 B
TOML
[package]
|
|
name = "rustpython-derive-impl"
|
|
version = "0.4.0"
|
|
description = "Rust language extensions and macros specific to rustpython."
|
|
authors = ["RustPython Team"]
|
|
repository = "https://github.com/RustPython/RustPython"
|
|
license = "MIT"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
rustpython-compiler-core = { workspace = true }
|
|
rustpython-parser-core = { workspace = true }
|
|
rustpython-doc = { workspace = true }
|
|
|
|
itertools = { workspace = true }
|
|
once_cell = { workspace = true }
|
|
syn = { workspace = true, features = ["full", "extra-traits"] }
|
|
|
|
maplit = "1.0.2"
|
|
proc-macro2 = "1.0.79"
|
|
quote = "1.0.18"
|
|
syn-ext = { version = "0.4.0", features = ["full"] }
|
|
textwrap = { version = "0.15.0", default-features = false }
|
|
|
|
[lints]
|
|
workspace = true |