forked from Raytwo/ARCropolis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
36 lines (31 loc) · 1.01 KB
/
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
33
34
35
36
[package]
name = "arcropolis"
version = "1.0.4-beta"
authors = ["Raytwo <[email protected]>, jam1garner <[email protected]>"]
edition = "2018"
[package.metadata.skyline]
titleid = "01006A800016E000"
[lib]
crate-type = ["cdylib"]
[dependencies]
log = "0.4.11"
toml = "0.5.6"
semver = "0.11.0"
lazy_static = "1.4"
owo-colors = "1.0.3"
parking_lot = "0.11.0"
thiserror = "1.0.24"
serde = { version = "1", features = ["derive"] }
rand = { git = "https://github.com/skyline-rs/rand" }
skyline = { git = "https://github.com/ultimate-research/skyline-rs.git" }
skyline-web = { git = "https://github.com/skyline-rs/skyline-web" }
skyline-update = { git = "https://github.com/skyline-rs/skyline-update" }
# Needs to be cloned locally and add link.ld to the root of the directory for the time being. Don't ask why. I don't know.
smash-arc = { path = "../smash-arc", features = [ "smash-runtime", "nozstd" ] }
ramhorns = "0.9.4"
#percent-encoding = "2.1.0"
[profile.dev]
panic = "abort"
[profile.release]
panic = "abort"
lto = true