2022-02-21 03:14:22 +00:00
|
|
|
[package]
|
|
|
|
name = "training_modpack"
|
|
|
|
version = "3.2.0"
|
|
|
|
authors = ["jugeeya <jugeeya@live.com>"]
|
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
crate-type = ["cdylib"]
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
skyline = { git = "https://github.com/ultimate-research/skyline-rs.git" }
|
|
|
|
skyline_smash = { git = "https://github.com/ultimate-research/skyline-smash.git" }
|
|
|
|
skyline-web = { git = "https://github.com/skyline-rs/skyline-web.git" }
|
|
|
|
bitflags = "1.2.1"
|
|
|
|
parking_lot = { version = "0.11.1", features = ["nightly"] }
|
|
|
|
lazy_static = "1.4.0"
|
|
|
|
owo-colors = "2.1.0"
|
|
|
|
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"
|
|
|
|
minreq = { version = "=2.2.1", features = ["https", "json-using-serde"] }
|
|
|
|
serde = { version = "1", features = ["derive"] }
|
|
|
|
serde_json = "1"
|
|
|
|
training_mod_consts = { path = "training_mod_consts" }
|
2022-03-20 18:09:25 +00:00
|
|
|
training_mod_tui = { path = "training_mod_tui" }
|
2022-02-21 03:14:22 +00:00
|
|
|
|
|
|
|
[patch.crates-io]
|
|
|
|
ring = { git = "https://github.com/skyline-rs/ring", branch = "0.16.20" }
|
|
|
|
webpki = { git = "https://github.com/skyline-rs/webpki" }
|
|
|
|
|
|
|
|
[profile.dev]
|
|
|
|
panic = "abort"
|
|
|
|
|
|
|
|
[profile.release]
|
|
|
|
panic = "abort"
|
|
|
|
lto = true
|
|
|
|
|
|
|
|
[package.metadata.skyline]
|
|
|
|
titleid = "01006A800016E000"
|
|
|
|
plugin-dependencies = [
|
|
|
|
{ name = "libnro_hook.nro", url = "https://github.com/ultimate-research/nro-hook-plugin/releases/download/v0.3.0/libnro_hook.nro" },
|
|
|
|
{ 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 = []
|