[package]
edition = "2024"
rust-version = "1.85"
name = "nms-cli"
version = "0.1.0"
authors = ["oubiwann <oubiwann@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "One-shot CLI for No Man's Sky Copilot — search planets, plan routes, convert glyphs"
homepage = "https://github.com/oxur/nms-copilot"
readme = false
keywords = [
"nms",
"no-mans-sky",
"cli",
"portal-glyphs",
]
categories = [
"games",
"command-line-utilities",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/oxur/nms-copilot"
[[bin]]
name = "nms"
path = "src/main.rs"
[[test]]
name = "find_integration"
path = "tests/find_integration.rs"
[[test]]
name = "info_integration"
path = "tests/info_integration.rs"
[[test]]
name = "show_integration"
path = "tests/show_integration.rs"
[[test]]
name = "stats_integration"
path = "tests/stats_integration.rs"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.nms-core]
version = "0.1.0"
[dependencies.nms-graph]
version = "0.1.0"
[dependencies.nms-query]
version = "0.1.0"
[dependencies.nms-save]
version = "0.1.0"