nod-rs/Cargo.toml

62 lines
1.6 KiB
TOML
Raw Normal View History

2021-08-23 06:48:35 -07:00
[package]
name = "nod"
2024-02-02 15:17:35 -08:00
version = "0.2.0"
edition = "2021"
2024-02-02 15:29:11 -08:00
rust-version = "1.59.0"
2021-08-23 06:48:35 -07: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 = """
Rust library and CLI tool for reading GameCube and Wii disc images.
"""
keywords = ["gamecube", "wii", "iso", "nfs", "rvz"]
2021-08-23 08:11:56 -07:00
categories = ["command-line-utilities", "parser-implementations"]
build = "build.rs"
2021-08-23 06:48:35 -07:00
[[bin]]
name = "nodtool"
path = "src/bin.rs"
2024-02-02 15:17:35 -08:00
[profile.release-lto]
inherits = "release"
lto = "thin"
strip = "debuginfo"
[features]
default = ["compress-bzip2", "compress-lzma", "compress-zstd"]
2024-02-02 15:17:35 -08:00
asm = ["md-5/asm", "sha1/asm"]
compress-bzip2 = ["bzip2"]
compress-lzma = ["liblzma"]
2024-02-02 15:17:35 -08:00
compress-zstd = ["zstd"]
nightly = ["crc32fast/nightly"]
2022-02-02 23:36:41 -08:00
2021-08-23 06:48:35 -07:00
[dependencies]
aes = "0.8.4"
2024-02-02 15:17:35 -08:00
argh_derive = "0.1.12"
argp = "0.3.0"
2024-02-02 15:17:35 -08:00
base16ct = "0.2.0"
bzip2 = { version = "0.4.4", features = ["static"], optional = true }
2024-02-02 15:17:35 -08:00
cbc = "0.1.2"
crc32fast = "1.4.0"
digest = "0.10.7"
enable-ansi-support = "0.2.1"
2024-02-02 15:17:35 -08:00
encoding_rs = "0.8.33"
2021-08-23 06:48:35 -07:00
file-size = "1.0.3"
indicatif = "0.17.8"
itertools = "0.12.1"
liblzma = { git = "https://github.com/encounter/liblzma-rs.git", rev = "ce29b22", features = ["static"], optional = true }
log = "0.4.20"
2024-02-02 15:17:35 -08:00
md-5 = "0.10.6"
rayon = "1.8.1"
2024-02-02 15:17:35 -08:00
sha1 = "0.10.6"
supports-color = "3.0.0"
thiserror = "1.0.57"
tracing = "0.1.40"
tracing-attributes = "0.1.27"
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
xxhash-rust = { version = "0.8.8", features = ["xxh64"] }
zerocopy = { version = "0.7.32", features = ["alloc", "derive"] }
2024-02-02 15:17:35 -08:00
zstd = { version = "0.13.0", optional = true }