mirror of
https://github.com/tribufu/rust-gamedig
synced 2026-06-01 09:42:41 +00:00
refator: copy cli into mono
This commit is contained in:
parent
66ae3c296e
commit
80f6b87991
63 changed files with 244 additions and 34 deletions
22
crates/cli/Cargo.toml
Normal file
22
crates/cli/Cargo.toml
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
[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"
|
||||
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
||||
[dependencies]
|
||||
clap = { version = "4.1.11", features = ["derive"] }
|
||||
gamedig = { version = "*", path = "../lib" }
|
||||
strum = "0.25.0"
|
||||
strum_macros = "0.24.3"
|
||||
thiserror = "1.0.43"
|
||||
|
||||
[profile.release]
|
||||
opt-level = 3
|
||||
debug = false
|
||||
rpath = true
|
||||
lto = true
|
||||
Loading…
Add table
Add a link
Reference in a new issue