mirror of
https://github.com/astral-sh/ruff.git
synced 2025-11-01 12:25:10 +00:00
17 lines
395 B
TOML
17 lines
395 B
TOML
[package]
|
|
name = "ruff_macros"
|
|
version = "0.0.0"
|
|
publish = false
|
|
edition = { workspace = true }
|
|
rust-version = { workspace = true }
|
|
|
|
[lib]
|
|
proc-macro = true
|
|
doctest = false
|
|
|
|
[dependencies]
|
|
proc-macro2 = { workspace = true }
|
|
quote = { workspace = true }
|
|
syn = { workspace = true, features = ["derive", "parsing", "extra-traits"] }
|
|
textwrap = { workspace = true }
|
|
itertools = { workspace = true }
|