rustii/Cargo.toml
NinjaCheetah edf3af0f7c
Some checks are pending
Build rustii / build-linux-x86_64 (push) Waiting to run
Build rustii / build-macos-arm64 (push) Waiting to run
Build rustii / build-macos-x86_64 (push) Waiting to run
Build rustii / build-windows-x86_64 (push) Waiting to run
Added signature verification, info command now has WiiPy feature parity
rustii CLI info command now displays the signing status of TMDs/Tickets/WADs like WiiPy does, and displays the ASCII TID for a title when applicable. This means that this command now has full feature parity with WiiPy.
2025-03-27 21:06:59 -04:00

36 lines
768 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"
rsa = { version = "0", features = ["sha2"] }
hex = "0"
sha1 = { version = "0", features = ["oid"]}
glob = "0"
regex = "1"
clap = { version = "4", features = ["derive"] }