16 lines
417 B
TOML
16 lines
417 B
TOML
[package]
|
|
name = "wolf-cli"
|
|
edition.workspace = true
|
|
version.workspace = true
|
|
license.workspace = true
|
|
description = "The `wolf` command-line front-end for the WolfDawn toolchain."
|
|
|
|
[[bin]]
|
|
name = "wolf"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
wolf-core = { path = "../wolf-core" }
|
|
wolf-formats = { path = "../wolf-formats" }
|
|
wolf-decompiler = { path = "../wolf-decompiler" }
|
|
wolf-archive = { path = "../wolf-archive" }
|