mirror of
https://github.com/Xeeynamo/sotn-decomp.git
synced 2024-11-23 13:09:44 +00:00
63a7c3bac9
`sotn-lint` will now convert `flags` and `drawFlags` fields from integers to enum values. `sotn-lint` will no longer overwrite files that haven't changed, so running `make format build` only has to rebuild files that are modified. The logic from `DrawModeTransformer` has been pulled out into `BitFlagLineTransformer` which will handle any type of bitmasked enum type.
14 lines
267 B
TOML
14 lines
267 B
TOML
[package]
|
|
name = "sotn-lint"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
lazy_static = "1.4.0"
|
|
rayon = "1.7.0"
|
|
regex = "1.9.1"
|
|
num = "0.4.3"
|
|
once_cell = "1.19.0"
|