nod-rs/Cargo.toml

34 lines
731 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"]
rust-version = "1.51"
[[bin]]
name = "nodtool"
path = "src/bin.rs"
[profile.release]
lto = true
[dependencies]
aes = "0.7.5"
anyhow = "1.0.53"
binrw = "0.8.4"
block-modes = "0.8.1"
clap = "2.34.0"
encoding_rs = "0.8.30"
file-size = "1.0.3"
sha-1 = "0.10.0"
thiserror = "1.0.30"