mirror of https://github.com/encounter/nod-rs.git
59 lines
1.8 KiB
TOML
59 lines
1.8 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 and writing GameCube and Wii disc images.
|
|
"""
|
|
keywords.workspace = true
|
|
categories = ["command-line-utilities", "parser-implementations"]
|
|
|
|
[features]
|
|
default = ["compress-bzip2", "compress-lzma", "compress-zlib", "compress-zstd"]
|
|
compress-bzip2 = ["bzip2"]
|
|
compress-lzma = ["liblzma", "liblzma-sys"]
|
|
compress-zlib = ["adler", "miniz_oxide"]
|
|
compress-zstd = ["zstd", "zstd-safe"]
|
|
openssl = ["dep:openssl"]
|
|
openssl-vendored = ["openssl", "openssl/vendored"]
|
|
|
|
[dependencies]
|
|
adler = { version = "1.0", optional = true }
|
|
aes = "0.9.0-pre.2"
|
|
base16ct = "0.2"
|
|
bit-set = "0.8"
|
|
bytes = "1.8"
|
|
bzip2 = { version = "0.4", features = ["static"], optional = true }
|
|
cbc = "0.2.0-pre.2"
|
|
crc32fast = "1.4"
|
|
crossbeam-channel = "0.5"
|
|
crossbeam-utils = "0.8"
|
|
digest = { workspace = true }
|
|
dyn-clone = "1.0"
|
|
encoding_rs = "0.8"
|
|
itertools = "0.13"
|
|
liblzma = { version = "0.3", features = ["static"], optional = true }
|
|
liblzma-sys = { version = "0.3", features = ["static"], optional = true }
|
|
lru = "0.12"
|
|
md-5 = { workspace = true }
|
|
memmap2 = "0.9"
|
|
miniz_oxide = { version = "0.8", optional = true }
|
|
openssl = { version = "0.10", optional = true }
|
|
polonius-the-crab = "0.4"
|
|
rand = "0.8"
|
|
rayon = "1.10"
|
|
sha1 = { workspace = true }
|
|
simple_moving_average = "1.0"
|
|
thiserror = "2.0"
|
|
tracing = { workspace = true }
|
|
xxhash-rust = { version = "0.8", features = ["xxh64"] }
|
|
zerocopy = { workspace = true }
|
|
zstd = { version = "0.13", optional = true, default-features = false }
|
|
zstd-safe = { version = "7.2", optional = true, default-features = false }
|