2023-02-26 20:14:03 +00:00
|
|
|
[package]
|
|
|
|
name = "training_mod_consts"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
[dependencies]
|
2023-12-02 17:02:43 +00:00
|
|
|
byteflags = { git = "https://github.com/asimon-1/byteflags.git", branch = "rand-0.7.4" }
|
2023-02-26 20:14:03 +00:00
|
|
|
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"
|
2023-08-18 04:21:59 +00:00
|
|
|
skyline = { git = "https://github.com/ultimate-research/skyline-rs.git" }
|
2023-02-26 20:14:03 +00:00
|
|
|
skyline_smash = { git = "https://github.com/ultimate-research/skyline-smash.git", optional = true }
|
2023-08-18 04:21:59 +00:00
|
|
|
toml = "0.5.9"
|
|
|
|
anyhow = "1.0.72"
|
2023-12-02 17:02:43 +00:00
|
|
|
rand = { git = "https://github.com/skyline-rs/rand" }
|
|
|
|
training_mod_tui = { path = "../training_mod_tui"}
|
2023-02-26 20:14:03 +00:00
|
|
|
|
|
|
|
[features]
|
|
|
|
default = ["smash"]
|
2023-08-18 04:21:59 +00:00
|
|
|
smash = ["skyline_smash"]
|