chore(marathonctl): add crates.io metadata for publishing

Add package metadata required for crates.io publication:
- Description
- MIT license
- Repository URL
- Keywords and categories
- Version requirement for libmarathon dependency

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
This commit is contained in:
2026-02-07 13:06:57 +00:00
parent 25550e2165
commit 303ea7d8e0

View File

@@ -2,13 +2,18 @@
name = "marathonctl"
version = "0.1.0"
edition.workspace = true
description = "Command-line control interface for Marathon multiplayer game engine"
license = "MIT"
repository = "https://github.com/r3t-studios/marathon"
keywords = ["gamedev", "multiplayer", "cli", "networking"]
categories = ["command-line-utilities", "game-development", "network-programming"]
[[bin]]
name = "marathonctl"
path = "src/main.rs"
[dependencies]
libmarathon = { path = "../libmarathon" }
libmarathon = { version = "0.1.1", path = "../libmarathon" }
clap.workspace = true
uuid.workspace = true
ratatui = "0.29"