Use workspace keys in Cargo.toml

This commit is contained in:
2024-09-10 23:19:19 -06:00
parent d2b8135cdb
commit 6f3052e05d
6 changed files with 41 additions and 29 deletions

View File

@@ -1,17 +1,17 @@
[package]
name = "nodtool"
version = "1.2.1"
edition = "2021"
rust-version = "1.73.0"
authors = ["Luke Street <luke@street.dev>"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/encounter/nod-rs"
documentation = "https://docs.rs/nod"
version.workspace = true
edition.workspace = true
rust-version.workspace = true
authors.workspace = true
license.workspace = true
repository.workspace = true
documentation = "https://docs.rs/nodtool"
readme = "../README.md"
description = """
CLI tool for verifying and converting GameCube and Wii disc images.
"""
keywords = ["gamecube", "wii", "iso", "wbfs", "rvz"]
keywords.workspace = true
categories = ["command-line-utilities", "parser-implementations"]
build = "build.rs"