Files
nod/Cargo.toml
T
Luke Street 8b3f655dc2 Various updates
- Use thiserror for nod::Error
- Use anyhow for error context chaining
- Stream logic fixes
2022-02-03 02:02:49 -05:00

30 lines
680 B
TOML

[package]
name = "nod"
version = "0.1.2"
edition = "2018"
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", "gcm"]
categories = ["command-line-utilities", "parser-implementations"]
[[bin]]
name = "nodtool"
path = "src/bin.rs"
[dependencies]
aes = "0.7.4"
anyhow = "1.0.53"
binread = "2.1.1"
block-modes = "0.8.1"
clap = "2.33.3"
encoding_rs = "0.8.28"
file-size = "1.0.3"
sha-1 = "0.9.7"
thiserror = "1.0.30"