2022-02-20 19:14:22 -08:00
|
|
|
[package]
|
|
|
|
name = "training_modpack"
|
2022-05-22 17:02:00 -07:00
|
|
|
version = "4.0.0"
|
2022-02-20 19:14:22 -08:00
|
|
|
authors = ["jugeeya <jugeeya@live.com>"]
|
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
crate-type = ["cdylib"]
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
skyline = { git = "https://github.com/ultimate-research/skyline-rs.git" }
|
2022-10-06 13:49:03 -07:00
|
|
|
skyline_smash = { git = "https://github.com/ultimate-research/skyline-smash.git", branch = "no-cache" }
|
2022-02-20 19:14:22 -08:00
|
|
|
skyline-web = { git = "https://github.com/skyline-rs/skyline-web.git" }
|
|
|
|
bitflags = "1.2.1"
|
2022-05-25 15:07:56 -07:00
|
|
|
parking_lot = { version = "0.12.0", features = ["nightly"] }
|
2022-02-20 19:14:22 -08:00
|
|
|
lazy_static = "1.4.0"
|
|
|
|
owo-colors = "2.1.0"
|
2022-06-22 09:49:57 -04:00
|
|
|
once_cell = "1.12.0"
|
2022-02-20 19:14:22 -08:00
|
|
|
ramhorns = "0.12.0"
|
|
|
|
paste = "1.0"
|
|
|
|
num = "0.4.0"
|
|
|
|
num-derive = "0.3"
|
|
|
|
num-traits = "0.2"
|
|
|
|
wsl = "0.1.0"
|
|
|
|
strum = "0.21.0"
|
|
|
|
strum_macros = "0.21.0"
|
2022-11-23 12:27:57 -08:00
|
|
|
minreq = { version = "2", features = ["https-native", "json-using-serde"] }
|
2022-02-20 19:14:22 -08:00
|
|
|
serde = { version = "1", features = ["derive"] }
|
|
|
|
serde_json = "1"
|
2022-10-09 14:09:47 -07:00
|
|
|
toml = "0.5.9"
|
2022-02-20 19:14:22 -08:00
|
|
|
training_mod_consts = { path = "training_mod_consts" }
|
2022-03-20 11:09:25 -07:00
|
|
|
training_mod_tui = { path = "training_mod_tui" }
|
2022-11-23 13:49:04 -08:00
|
|
|
native-tls = { version = "0.2.11", features = ["vendored"] }
|
2022-02-20 19:14:22 -08:00
|
|
|
|
|
|
|
[patch.crates-io]
|
2022-12-05 10:54:41 -08:00
|
|
|
native-tls = { git = "https://github.com/skyline-rs/rust-native-tls", rev = "f202fca" }
|
Use nnsdk and smash upstreams for ui2d (#453)
* A bunch of things
* Current progress
* Fix for ResAnimationContent
* Figure out Parts*
* Cleanup, just because
* New pane working!!!
* New null pane for hierarchy
* Success with parent pane
* Generate multiple panes
* Multiple panes, almost working text color
* MaterialColor test, but fails
* Forgot bitfield-struct
* Vtable for material. Fixes SetWhiteColor!
* Refactor color changing, change naming scheme
* Just Frame Advantage
* Merge
* Delete T_test.txt
* Delete set_txt_num_01.txt
* Delete libtraining_modpack.nro
* Format Rust code using rustfmt
* Ignore shell scripts in repo languages
* General refactor, add basis for quick menu
* Small refactor, fix ordering of submenu options
* Toggles, sliders
* Tons of progress...
* Correct dmg updater, remove old quick menu backend
* Fix damage percentage display
* Small QoL
* Format Rust code using rustfmt
* More edits. Use Quit Training button as Modpack Menu header
* Finish merge
* Format Rust code using rustfmt
* Use vanilla backgrounds for text options
* Format ui_hacks, also always do new percent display
* Fix merge
* That was the most awful merge ever
* Address clippy warnings
* Format Rust code using rustfmt
* Last impls for resources, small cleanup
* Use macro for pane names
* Format
* Add HUD toggle
* Small change
* Fix for reentering training mode
* Last cleanup
* Format Rust code using rustfmt
* Try using nnsdk/smash upstream
* Format Rust code using rustfmt
* Update Cargo.toml
* Update Cargo.toml
* Update Cargo.toml
* Update Cargo.toml
* Update Cargo.toml
* Update Cargo.toml
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2022-12-30 19:22:30 -08:00
|
|
|
nnsdk = { git = "https://github.com/ultimate-research/nnsdk-rs" }
|
2022-02-20 19:14:22 -08:00
|
|
|
|
|
|
|
[profile.dev]
|
|
|
|
panic = "abort"
|
|
|
|
|
|
|
|
[profile.release]
|
|
|
|
panic = "abort"
|
|
|
|
lto = true
|
|
|
|
|
|
|
|
[package.metadata.skyline]
|
|
|
|
titleid = "01006A800016E000"
|
|
|
|
plugin-dependencies = [
|
2022-12-15 10:01:45 -08:00
|
|
|
{ name = "libnro_hook.nro", url = "https://github.com/ultimate-research/nro-hook-plugin/releases/download/v0.4.0/libnro_hook.nro" },
|
2022-02-20 19:14:22 -08:00
|
|
|
{ name = "libparam_hook.nro", url = "https://github.com/ultimate-research/params-hook-plugin/releases/download/v0.1.1/libparam_hook.nro" },
|
|
|
|
{ name = "libnn_hid_hook.nro", url = "https://github.com/jugeeya/nn-hid-hook/releases/download/beta/libnn_hid_hook.nro" }
|
|
|
|
]
|
|
|
|
|
|
|
|
[features]
|
|
|
|
outside_training_mode = []
|
2022-11-23 13:49:04 -08:00
|
|
|
web_session_single_thread = []
|