mirror of
https://github.com/astral-sh/ruff.git
synced 2025-08-04 18:58:04 +00:00
23 lines
593 B
TOML
23 lines
593 B
TOML
[package]
|
|
name = "ruff_macros"
|
|
version = "0.0.0"
|
|
publish = false
|
|
authors = { workspace = true }
|
|
edition = { workspace = true }
|
|
rust-version = { workspace = true }
|
|
homepage = { workspace = true }
|
|
documentation = { workspace = true }
|
|
repository = { workspace = true }
|
|
license = { workspace = true }
|
|
|
|
[lib]
|
|
proc-macro = true
|
|
doctest = false
|
|
|
|
[dependencies]
|
|
ruff_python_trivia = { path = "../ruff_python_trivia" }
|
|
|
|
proc-macro2 = { workspace = true }
|
|
quote = { workspace = true }
|
|
syn = { workspace = true, features = ["derive", "parsing", "extra-traits", "full"] }
|
|
itertools = { workspace = true }
|