2024-02-22 06:13:35 +00:00
|
|
|
[package]
|
|
|
|
name = "nodtool"
|
2024-05-01 05:51:34 +00:00
|
|
|
version = "1.2.0"
|
2024-02-22 06:13:35 +00:00
|
|
|
edition = "2021"
|
2024-02-22 06:33:48 +00:00
|
|
|
rust-version = "1.73.0"
|
2024-02-22 06:13:35 +00:00
|
|
|
authors = ["Luke Street <luke@street.dev>"]
|
|
|
|
license = "MIT OR Apache-2.0"
|
|
|
|
repository = "https://github.com/encounter/nod-rs"
|
|
|
|
documentation = "https://docs.rs/nod"
|
|
|
|
readme = "../README.md"
|
|
|
|
description = """
|
|
|
|
CLI tool for verifying and converting GameCube and Wii disc images.
|
|
|
|
"""
|
|
|
|
keywords = ["gamecube", "wii", "iso", "wbfs", "rvz"]
|
|
|
|
categories = ["command-line-utilities", "parser-implementations"]
|
|
|
|
build = "build.rs"
|
|
|
|
|
|
|
|
[features]
|
|
|
|
asm = ["md-5/asm", "nod/asm", "sha1/asm"]
|
|
|
|
nightly = ["crc32fast/nightly"]
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
argp = "0.3.0"
|
|
|
|
base16ct = "0.2.0"
|
2024-06-19 03:43:23 +00:00
|
|
|
crc32fast = "1.4.2"
|
2024-02-22 06:13:35 +00:00
|
|
|
digest = "0.10.7"
|
|
|
|
enable-ansi-support = "0.2.1"
|
2024-06-19 03:04:59 +00:00
|
|
|
hex = { version = "0.4.3", features = ["serde"] }
|
2024-02-22 06:13:35 +00:00
|
|
|
indicatif = "0.17.8"
|
|
|
|
itertools = "0.12.1"
|
|
|
|
log = "0.4.20"
|
|
|
|
md-5 = "0.10.6"
|
|
|
|
nod = { path = "../nod" }
|
2024-06-19 03:04:59 +00:00
|
|
|
quick-xml = { version = "0.31.0", features = ["serialize"] }
|
|
|
|
serde = { version = "1.0.197", features = ["derive"] }
|
2024-02-22 06:13:35 +00:00
|
|
|
sha1 = "0.10.6"
|
|
|
|
size = "0.4.1"
|
|
|
|
supports-color = "3.0.0"
|
|
|
|
tracing = "0.1.40"
|
|
|
|
tracing-attributes = "0.1.27"
|
|
|
|
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
|
|
|
|
xxhash-rust = { version = "0.8.10", features = ["xxh64"] }
|
|
|
|
zerocopy = { version = "0.7.32", features = ["alloc", "derive"] }
|
2024-06-19 03:04:59 +00:00
|
|
|
zstd = "0.13.1"
|
2024-02-22 06:13:35 +00:00
|
|
|
|
|
|
|
[build-dependencies]
|
|
|
|
hex = { version = "0.4.3", features = ["serde"] }
|
|
|
|
quick-xml = { version = "0.31.0", features = ["serialize"] }
|
|
|
|
serde = { version = "1.0.197", features = ["derive"] }
|
|
|
|
zerocopy = { version = "0.7.32", features = ["alloc", "derive"] }
|
2024-06-19 03:04:59 +00:00
|
|
|
zstd = "0.13.1"
|