Files
nod/Cargo.toml
T

30 lines
679 B
TOML
Raw Normal View History

2021-08-23 09:48:35 -04:00
[package]
name = "nod"
2022-02-02 17:42:34 -05:00
version = "0.1.2"
2021-08-23 09:48:35 -04:00
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.
"""
2021-08-23 11:11:56 -04:00
keywords = ["gamecube", "wii", "iso", "nfs", "gcm"]
categories = ["command-line-utilities", "parser-implementations"]
2021-08-23 09:48:35 -04:00
[[bin]]
name = "nodtool"
path = "src/bin.rs"
[dependencies]
aes = "0.7.5"
2022-02-02 17:42:34 -05:00
anyhow = "1.0.53"
binrw = "0.8.4"
2021-08-23 09:48:35 -04:00
block-modes = "0.8.1"
clap = "2.34.0"
encoding_rs = "0.8.30"
2021-08-23 09:48:35 -04:00
file-size = "1.0.3"
sha-1 = "0.10.0"
2022-02-02 17:42:34 -05:00
thiserror = "1.0.30"