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>
21 lines
579 B
TOML
21 lines
579 B
TOML
[package]
|
|
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 = { version = "0.1.1", path = "../libmarathon" }
|
|
clap.workspace = true
|
|
uuid.workspace = true
|
|
ratatui = "0.29"
|
|
crossterm = "0.28"
|