mirror of https://github.com/encounter/nod-rs.git
43 lines
1.1 KiB
TOML
43 lines
1.1 KiB
TOML
[package]
|
|
name = "nod"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
authors.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
documentation = "https://docs.rs/nod"
|
|
readme = "../README.md"
|
|
description = """
|
|
Library for reading GameCube and Wii disc images.
|
|
"""
|
|
keywords.workspace = true
|
|
categories = ["command-line-utilities", "parser-implementations"]
|
|
|
|
[features]
|
|
default = ["compress-bzip2", "compress-lzma", "compress-zlib", "compress-zstd"]
|
|
asm = ["sha1/asm"]
|
|
compress-bzip2 = ["bzip2"]
|
|
compress-lzma = ["liblzma"]
|
|
compress-zlib = ["adler", "miniz_oxide"]
|
|
compress-zstd = ["zstd"]
|
|
|
|
[dependencies]
|
|
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"
|
|
itertools = "0.13"
|
|
liblzma = { version = "0.3", features = ["static"], optional = true }
|
|
log = "0.4"
|
|
miniz_oxide = { version = "0.8", optional = true }
|
|
rayon = "1.10"
|
|
sha1 = "0.10"
|
|
thiserror = "1.0"
|
|
zerocopy = { version = "0.8", features = ["alloc", "derive"] }
|
|
zstd = { version = "0.13", optional = true }
|