mirror of
https://github.com/tribufu/rust-gamedig
synced 2026-05-06 15:27:28 +00:00
* crate: Set default binary to gamedig-cli * crate: Fix bad no-default-features option on gamedig-id dependency * ci: Run tests when Cargo.toml changes * id-tests: Clippy fixes
25 lines
718 B
TOML
25 lines
718 B
TOML
[package]
|
|
name = "gamedig-cli"
|
|
authors = [
|
|
"rust-GameDig contributors [https://github.com/gamedig/rust-gamedig/contributors]",
|
|
]
|
|
description = "A command line interface for gamedig"
|
|
license = "MIT"
|
|
version = "0.4.1"
|
|
edition = "2021"
|
|
default-run = "gamedig-cli"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[features]
|
|
default = ["json"]
|
|
json = ["dep:serde", "dep:serde_json", "gamedig/serde"]
|
|
|
|
[dependencies]
|
|
clap = { version = "4.1.11", features = ["derive"] }
|
|
gamedig = { version = "*", path = "../lib", features = ["clap"] }
|
|
thiserror = "1.0.43"
|
|
|
|
# JSON dependencies
|
|
serde = { version = "1", optional = true }
|
|
serde_json = { version = "1", optional = true }
|