mirror of
https://github.com/jugeeya/UltimateTrainingModpack.git
synced 2024-11-20 00:46:34 +00:00
e4e2de0a79
* Initial commit * Format Rust code using rustfmt * Add back fs calls * working with drawing * wow we're almost there * multi-lists working, selection within tui working * working with tabs * working with smash * amend warnings, fix menu actually saving inputs * small refactors * Fully working! * Fix warnings Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
18 lines
No EOL
510 B
TOML
18 lines
No EOL
510 B
TOML
[package]
|
|
name = "training_mod_tui"
|
|
version = "0.1.0"
|
|
edition = "2018"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
tui = { version = "0.16.0", default-features = false }
|
|
unicode-width = "0.1.9"
|
|
training_mod_consts = { path = "../training_mod_consts", default-features = false}
|
|
serde_json = "1.0.79"
|
|
bitflags = "1.2.1"
|
|
crossterm = { version = "0.22.1", optional = true }
|
|
|
|
[features]
|
|
default = []
|
|
has_terminal = ["crossterm", "tui/crossterm"] |