oxc/tasks/ast_codegen/Cargo.toml
rzvxa 0b433108be feat(ast_codegen): add cli arguments to use with oxc_ast_codegen executable. (#4117)
```
Usage: oxc_ast_codegen [--dry-run] [--no-fmt] [--schema=ARG]

Available options:
        --dry-run     Runs all generators but won't write anything down.
        --no-fmt      Don't run cargo fmt at the end
        --schema=ARG  Path of output `schema.json`.
    -h, --help        Prints help information
```
2024-07-09 03:42:11 +00:00

35 lines
787 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
[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"] }