mirror of
https://github.com/danbulant/oxc
synced 2026-05-24 12:21:58 +00:00
29 lines
815 B
TOML
29 lines
815 B
TOML
[package]
|
|
name = "oxc_ast_tools"
|
|
version = "0.0.0"
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
publish = false
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[[bin]]
|
|
name = "oxc_ast_tools"
|
|
test = false
|
|
doctest = false
|
|
|
|
[dependencies]
|
|
bpaf = { workspace = true, features = ["autocomplete", "bright-color", "derive"] }
|
|
convert_case = { workspace = true }
|
|
cow-utils = { workspace = true }
|
|
itertools = { workspace = true }
|
|
lazy_static = { workspace = true }
|
|
prettyplease = { workspace = true }
|
|
proc-macro2 = { workspace = true }
|
|
quote = { workspace = true }
|
|
regex = { workspace = true }
|
|
rustc-hash = { workspace = true }
|
|
serde = { workspace = true, features = ["derive"] }
|
|
serde_json = { workspace = true }
|
|
syn = { workspace = true, features = ["clone-impls", "derive", "extra-traits", "full", "parsing", "printing", "proc-macro"] }
|