2025-03-17 20:05:01 -04:00
|
|
|
[package]
|
|
|
|
name = "rustii"
|
2025-03-18 20:39:38 -04:00
|
|
|
authors = ["NinjaCheetah <ninjacheetah@ncxprogramming.com>"]
|
|
|
|
license = "MIT"
|
|
|
|
description = "A Rust library and CLI for handling files and formats used by the Wii"
|
2025-03-17 20:05:01 -04:00
|
|
|
version = "0.1.0"
|
2025-03-18 20:39:38 -04:00
|
|
|
readme = "README.md"
|
|
|
|
homepage = "https://github.com/NinjaCheetah/rustii"
|
|
|
|
repository = "https://github.com/NinjaCheetah/rustii"
|
2025-03-17 20:05:01 -04:00
|
|
|
edition = "2024"
|
2025-03-18 20:39:38 -04:00
|
|
|
default-run = "rustii"
|
2025-03-17 20:05:01 -04:00
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "rustii"
|
|
|
|
path = "src/bin/rustii/main.rs"
|
|
|
|
|
2025-03-18 20:39:38 -04:00
|
|
|
[[bin]]
|
|
|
|
name = "playground"
|
|
|
|
path = "src/bin/playground/main.rs"
|
|
|
|
|
2025-03-17 20:05:01 -04:00
|
|
|
[lib]
|
|
|
|
path = "src/lib.rs"
|
|
|
|
test = true
|
|
|
|
doc = true
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
byteorder = "1"
|
|
|
|
cbc = "0"
|
|
|
|
aes = "0"
|
2025-03-27 21:06:59 -04:00
|
|
|
rsa = { version = "0", features = ["sha2"] }
|
2025-03-18 09:13:34 -04:00
|
|
|
hex = "0"
|
2025-03-27 21:06:59 -04:00
|
|
|
sha1 = { version = "0", features = ["oid"]}
|
2025-03-19 18:50:37 -04:00
|
|
|
glob = "0"
|
2025-03-25 18:28:37 -04:00
|
|
|
regex = "1"
|
2025-03-18 20:39:38 -04:00
|
|
|
clap = { version = "4", features = ["derive"] }
|
2025-04-02 19:51:19 -04:00
|
|
|
anyhow = "1"
|
2025-04-03 13:41:44 -04:00
|
|
|
thiserror = "2"
|
2025-04-08 20:47:35 -04:00
|
|
|
reqwest = { version = "0", features = ["blocking"] }
|
2025-04-27 15:25:47 -04:00
|
|
|
rand = "0"
|
2025-05-03 23:43:02 -04:00
|
|
|
walkdir = "2"
|