mirror of
https://github.com/jugeeya/UltimateTrainingModpack.git
synced 2024-11-20 08:54:15 +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>
20 lines
No EOL
463 B
TOML
20 lines
No EOL
463 B
TOML
[package]
|
|
name = "training_mod_consts"
|
|
version = "0.1.0"
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
bitflags = "1.2.1"
|
|
strum = "0.21.0"
|
|
strum_macros = "0.21.0"
|
|
num = "0.4.0"
|
|
num-derive = "0.3"
|
|
num-traits = "0.2"
|
|
ramhorns = "0.12.0"
|
|
paste = "1.0"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
skyline_smash = { git = "https://github.com/ultimate-research/skyline-smash.git", optional = true }
|
|
|
|
[features]
|
|
default = ["smash"]
|
|
smash = ["skyline_smash"] |