nod-rs/Cargo.toml

33 lines
709 B
TOML
Raw Normal View History

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