Files
nod/Cargo.toml
T
5f3ea3c960 Simple WBFS partition stripping (#4)
* Strip partitions from WBFS

* More concise code

* Draft: add ProcessOptions::scrub_update_partition

* add scrub_update_partition for CISO

* update comment

* fix doctests

* #[allow(clippy::too_many_arguments)]

* ⬆️ Update deps

* ⬆️ Update deps

* 🚑 Fix compilation

* run cargo update

* run cargo fmt

* Revert "run cargo fmt"

This reverts commit 0f1360779c.

* Revert "run cargo update"

This reverts commit caa13433a2.

* Add ScrubLevel enum & fix formatting

* Update usages & fix block-padding

---------

Co-authored-by: Luke Street <luke@street.dev>
2025-10-15 19:53:07 -06:00

29 lines
730 B
TOML

[workspace]
members = ["nod", "nodtool"]
resolver = "3"
[profile.release]
debug = 1
[profile.release-lto]
inherits = "release"
lto = "fat"
strip = "debuginfo"
codegen-units = 1
[workspace.package]
version = "2.0.0-alpha.3"
edition = "2024"
rust-version = "1.85"
authors = ["Luke Street <luke@street.dev>"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/encounter/nod"
keywords = ["gamecube", "wii", "iso", "wbfs", "rvz"]
[workspace.dependencies]
digest = { version = "0.11.0-rc.3", default-features = false }
md-5 = { version = "0.11.0-rc.2", default-features = false }
sha1 = { version = "0.11.0-rc.2", default-features = false }
tracing = "0.1"
zerocopy = { version = "0.8", features = ["alloc", "derive"] }