2022-02-21 03:14:22 +00:00
|
|
|
[package]
|
|
|
|
name = "training_modpack"
|
2022-05-23 00:02:00 +00:00
|
|
|
version = "4.0.0"
|
2022-02-21 03:14:22 +00: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 20:49:03 +00:00
|
|
|
skyline_smash = { git = "https://github.com/ultimate-research/skyline-smash.git", branch = "no-cache" }
|
2022-02-21 03:14:22 +00:00
|
|
|
skyline-web = { git = "https://github.com/skyline-rs/skyline-web.git" }
|
|
|
|
bitflags = "1.2.1"
|
2022-12-22 22:22:37 +00:00
|
|
|
bitfield-struct = "0.1.8"
|
2022-05-25 22:07:56 +00:00
|
|
|
parking_lot = { version = "0.12.0", features = ["nightly"] }
|
2022-02-21 03:14:22 +00:00
|
|
|
lazy_static = "1.4.0"
|
|
|
|
owo-colors = "2.1.0"
|
2022-06-22 13:49:57 +00:00
|
|
|
once_cell = "1.12.0"
|
2022-02-21 03:14:22 +00: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 20:27:57 +00:00
|
|
|
minreq = { version = "2", features = ["https-native", "json-using-serde"] }
|
2022-02-21 03:14:22 +00:00
|
|
|
serde = { version = "1", features = ["derive"] }
|
|
|
|
serde_json = "1"
|
2022-10-09 21:09:47 +00:00
|
|
|
toml = "0.5.9"
|
2022-02-21 03:14:22 +00:00
|
|
|
training_mod_consts = { path = "training_mod_consts" }
|
2022-03-20 18:09:25 +00:00
|
|
|
training_mod_tui = { path = "training_mod_tui" }
|
2022-11-23 21:49:04 +00:00
|
|
|
native-tls = { version = "0.2.11", features = ["vendored"] }
|
2022-02-21 03:14:22 +00:00
|
|
|
|
|
|
|
[patch.crates-io]
|
2022-12-05 18:54:41 +00:00
|
|
|
native-tls = { git = "https://github.com/skyline-rs/rust-native-tls", rev = "f202fca" }
|
2022-02-21 03:14:22 +00:00
|
|
|
|
|
|
|
[profile.dev]
|
|
|
|
panic = "abort"
|
|
|
|
|
|
|
|
[profile.release]
|
|
|
|
panic = "abort"
|
|
|
|
lto = true
|
|
|
|
|
|
|
|
[package.metadata.skyline]
|
|
|
|
titleid = "01006A800016E000"
|
|
|
|
plugin-dependencies = [
|
2022-12-15 18:01:45 +00:00
|
|
|
{ name = "libnro_hook.nro", url = "https://github.com/ultimate-research/nro-hook-plugin/releases/download/v0.4.0/libnro_hook.nro" },
|
2022-02-21 03:14:22 +00: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 21:49:04 +00:00
|
|
|
web_session_single_thread = []
|