mirror of https://github.com/encounter/nod-rs.git
40 lines
1.1 KiB
TOML
40 lines
1.1 KiB
TOML
[package]
|
|
name = "nod"
|
|
version = "0.2.0"
|
|
edition = "2021"
|
|
rust-version = "1.59.0"
|
|
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 = """
|
|
Library for reading GameCube and Wii disc images.
|
|
"""
|
|
keywords = ["gamecube", "wii", "iso", "wbfs", "rvz"]
|
|
categories = ["command-line-utilities", "parser-implementations"]
|
|
|
|
[features]
|
|
default = ["compress-bzip2", "compress-lzma", "compress-zstd"]
|
|
asm = ["sha1/asm"]
|
|
compress-bzip2 = ["bzip2"]
|
|
compress-lzma = ["liblzma"]
|
|
compress-zstd = ["zstd"]
|
|
|
|
[dependencies]
|
|
aes = "0.8.4"
|
|
base16ct = "0.2.0"
|
|
bzip2 = { version = "0.4.4", features = ["static"], optional = true }
|
|
cbc = "0.1.2"
|
|
digest = "0.10.7"
|
|
dyn-clone = "1.0.16"
|
|
encoding_rs = "0.8.33"
|
|
itertools = "0.12.1"
|
|
liblzma = { version = "0.2.3", features = ["static"], optional = true }
|
|
log = "0.4.20"
|
|
rayon = "1.8.1"
|
|
sha1 = "0.10.6"
|
|
thiserror = "1.0.57"
|
|
zerocopy = { version = "0.7.32", features = ["alloc", "derive"] }
|
|
zstd = { version = "0.13.0", optional = true }
|