This helps with sharing the configuration files between the `mk*` and `un*` tools.
The naming of things in `{mk,un}lang_file` is a bit weird because we don't really emit/consume a config, per se. It's just the lang file serialized to toml.
This should be changed in the future to contain a config with a reference to the lang toml file.
22 lines
526 B
TOML
22 lines
526 B
TOML
[package]
|
|
edition = "2021"
|
|
name = "ddw3-tim-tools"
|
|
version = "0.1.0"
|
|
|
|
[dependencies]
|
|
|
|
anyhow = { workspace = true }
|
|
byteorder = { workspace = true }
|
|
clap = { workspace = true }
|
|
ddw3-bytes = { workspace = true }
|
|
ddw3-logger = { workspace = true }
|
|
ddw3-tim = { workspace = true }
|
|
ddw3-util = { workspace = true }
|
|
image = { workspace = true }
|
|
itertools = { workspace = true }
|
|
pathdiff = { workspace = true }
|
|
serde = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
toml = { workspace = true }
|
|
tracing = { workspace = true }
|