2024-02-22 06:13:35 +00:00
|
|
|
[package]
|
|
|
|
name = "nod"
|
2024-09-11 05:19:19 +00:00
|
|
|
version.workspace = true
|
|
|
|
edition.workspace = true
|
|
|
|
rust-version.workspace = true
|
|
|
|
authors.workspace = true
|
|
|
|
license.workspace = true
|
|
|
|
repository.workspace = true
|
2024-02-22 06:13:35 +00:00
|
|
|
documentation = "https://docs.rs/nod"
|
|
|
|
readme = "../README.md"
|
|
|
|
description = """
|
|
|
|
Library for reading GameCube and Wii disc images.
|
|
|
|
"""
|
2024-09-11 05:19:19 +00:00
|
|
|
keywords.workspace = true
|
2024-02-22 06:13:35 +00:00
|
|
|
categories = ["command-line-utilities", "parser-implementations"]
|
|
|
|
|
|
|
|
[features]
|
2024-02-23 02:58:01 +00:00
|
|
|
default = ["compress-bzip2", "compress-lzma", "compress-zlib", "compress-zstd"]
|
2024-02-22 06:13:35 +00:00
|
|
|
asm = ["sha1/asm"]
|
|
|
|
compress-bzip2 = ["bzip2"]
|
|
|
|
compress-lzma = ["liblzma"]
|
2024-02-23 02:58:01 +00:00
|
|
|
compress-zlib = ["adler", "miniz_oxide"]
|
2024-02-22 06:13:35 +00:00
|
|
|
compress-zstd = ["zstd"]
|
|
|
|
|
|
|
|
[dependencies]
|
2024-02-23 06:49:28 +00:00
|
|
|
adler = { version = "1.0", optional = true }
|
|
|
|
aes = "0.8"
|
|
|
|
base16ct = "0.2"
|
|
|
|
bzip2 = { version = "0.4", features = ["static"], optional = true }
|
|
|
|
cbc = "0.1"
|
|
|
|
digest = "0.10"
|
|
|
|
dyn-clone = "1.0"
|
|
|
|
encoding_rs = "0.8"
|
2024-09-08 22:29:48 +00:00
|
|
|
itertools = "0.13"
|
|
|
|
liblzma = { version = "0.3", features = ["static"], optional = true }
|
2024-02-23 06:49:28 +00:00
|
|
|
log = "0.4"
|
2024-09-08 22:29:48 +00:00
|
|
|
miniz_oxide = { version = "0.8", optional = true }
|
|
|
|
rayon = "1.10"
|
2024-02-23 06:49:28 +00:00
|
|
|
sha1 = "0.10"
|
|
|
|
thiserror = "1.0"
|
2024-10-04 02:57:02 +00:00
|
|
|
zerocopy = { version = "0.8", features = ["alloc", "derive"] }
|
2024-02-23 06:49:28 +00:00
|
|
|
zstd = { version = "0.13", optional = true }
|