-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
32 lines (26 loc) · 840 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
[package]
name = "captoss"
version = "0.1.0"
authors = []
edition = "2021"
[package.metadata.skyline]
titleid = "01006A800016E000" # Smash Ultimate
[lib]
crate-type = ["cdylib"]
[dependencies]
skyline = "0.2.0"
skyline_smash = { git = "https://github.com/blu-dev/skyline-smash", features = ["weak_l2cvalue"] }
smash_script = { git = "https://github.com/blu-dev/smash-script", branch = "development" }
smashline = { git = "https://github.com/HDR-Development/smashline" }
sharpsmashlinesuite = { path = "../../SharpSmashlineSuite", features = ["modules"] }
smash_singletons = { git = "https://github.com/WuBoytH/smash_singletons.git" }
#arcropolis-api = { git = "https://github.com/Raytwo/arcropolis_api"}
#lazy_static = "1.4.0"
[profile.dev]
panic = "abort"
[profile.release]
panic = "abort"
lto = true
[features]
dev = []
devhook = []