mirror of
https://github.com/jugeeya/UltimateTrainingModpack.git
synced 2024-12-28 19:29:16 +00:00
858d35142e
* Move QUICK_MENU_ACTIVE to RwLock
* VANILLA_MENU_ACTIVE
* EVENT_QUEUE and CURRENT_VERSION
* Stage Hazard Code
* Notifications
* FIGHTER_MANAGER, ITEM_MANAGER, and STAGE_MANAGER
* Airdodge STICK_DIRECTION
* Shield STICK_DIRECTION
* Attack angle DIRECTION
* offsets
* button_config
* imports in menu.rs
* frame_counter
* common::consts
* dev_config
* mappings in training/ui/menu
* input_log
* Move LazyLock to be a re-export
* buffs
* clatter
* directional influence
* fast_fall
* full_hop
* ledge
* sdi
* shield
* tech
* throw
* Refactor combo. Also allow frame advantage on hit.
* Fix bugs in frame advantage
* Move sync into a separate crate so we can import it in subcrates
* Update MENU
* Update DEFAULTS_MENU
* menu.rs and menu.rs
* Fix warning from ambiguous imports
* ptrainer
* mash.rs
* is_transitioning_dash
* items.rs
* input_record.rs
* Small adjustment to notifications
* Revert "Small adjustment to notifications"
This reverts commit 6629c6f456
.
* input_delay.rs
* Misc nits
* Rename for clarity and format
25 lines
759 B
TOML
25 lines
759 B
TOML
[package]
|
|
name = "training_mod_consts"
|
|
version = "0.1.0"
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
byteflags = { git = "https://github.com/asimon-1/byteflags.git", branch = "rand-0.7.4" }
|
|
num = "0.4.0"
|
|
num-derive = "0.3"
|
|
num-traits = "0.2"
|
|
paste = "1.0"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_repr = "0.1.8"
|
|
serde_json = "1"
|
|
skyline = { git = "https://github.com/ultimate-research/skyline-rs.git" }
|
|
skyline_smash = { git = "https://github.com/ultimate-research/skyline-smash.git", optional = true }
|
|
toml = "0.5.9"
|
|
anyhow = "1.0.72"
|
|
rand = { git = "https://github.com/skyline-rs/rand" }
|
|
training_mod_sync = { path = "../training_mod_sync" }
|
|
training_mod_tui = { path = "../training_mod_tui" }
|
|
|
|
[features]
|
|
default = ["smash"]
|
|
smash = ["skyline_smash"]
|