forked from Raytwo/ARCropolis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
49 lines (42 loc) · 1.51 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
37
38
39
40
41
42
43
44
45
46
47
48
49
[package]
name = "arcropolis"
version = "2.1.0"
authors = ["Raytwo <[email protected]>, jam1garner <[email protected]>, blujay <[email protected]>, CoolSonicKirby <[email protected]>"]
edition = "2018"
[package.metadata.skyline]
titleid = "01006A800016E000"
[lib]
crate-type = ["cdylib"]
[dependencies]
log = "0.4.11"
toml = { version = "0.5.6", optional = true }
semver = { version = "0.11.0", optional = true }
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" }
smash-arc = { git = "https://github.com/jam1garner/smash-arc", features = ["smash-runtime", "rust-zstd"]}
arc-vector = { git = "https://github.com/blu-dev/arc-vector" }
binread = "2"
percent-encoding = "2.1.0"
walkdir = "2"
arcropolis-api = { git = "https://github.com/blu-dev/arcropolis_api" }
bincode = "1.3.3"
cfg-if = "1.0.0"
skyline = { git = "https://github.com/ultimate-research/skyline-rs.git" }
skyline-web = { git = "https://github.com/skyline-rs/skyline-web", optional = true }
skyline-update = { git = "https://github.com/skyline-rs/skyline-update", optional = true }
skyline-communicate = { git = "https://github.com/blu-dev/skyline-communicate", optional = true }
[features]
default = ["server", "updater", "web", "config"]
config = ["toml", "semver"]
updater = ["skyline-update"]
web = ["skyline-web", "toml"]
server = ["skyline-communicate"]
[profile.dev]
panic = "abort"
[profile.release]
panic = "abort"
lto = true