rustii/Cargo.toml
NinjaCheetah 62f6e6c0ec
Added WAD packing command to rustii CLI
Also added lots of required library magic to make WAD packing possible. This includes the high-level Title object from libWiiPy, the ability to set content in a WAD, the ability to generate a WADHeader from a WADBody, and more.
2025-03-19 18:50:37 -04:00

34 lines
678 B
TOML

[package]
name = "rustii"
authors = ["NinjaCheetah <ninjacheetah@ncxprogramming.com>"]
license = "MIT"
description = "A Rust library and CLI for handling files and formats used by the Wii"
version = "0.1.0"
readme = "README.md"
homepage = "https://github.com/NinjaCheetah/rustii"
repository = "https://github.com/NinjaCheetah/rustii"
edition = "2024"
default-run = "rustii"
[[bin]]
name = "rustii"
path = "src/bin/rustii/main.rs"
[[bin]]
name = "playground"
path = "src/bin/playground/main.rs"
[lib]
path = "src/lib.rs"
test = true
doc = true
[dependencies]
byteorder = "1"
cbc = "0"
aes = "0"
hex = "0"
sha1 = "0"
glob = "0"
clap = { version = "4", features = ["derive"] }