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