-
Notifications
You must be signed in to change notification settings - Fork 10
/
Cargo.toml
51 lines (41 loc) · 1.47 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
50
51
[package]
name = "minecraft_skins"
version = "1.2.4"
authors = ["jam1garner <[email protected]>"]
edition = "2018"
[package.metadata.skyline]
titleid = "01006A800016E000"
[lib]
crate-type = ["cdylib"]
[dependencies]
skyline = { git = "https://github.com/ultimate-research/skyline-rs.git" }
skyline_smash = { git = "https://github.com/ultimate-research/skyline-smash.git" }
skyline-web = { git = "https://github.com/skyline-rs/skyline-web" }
ramhorns = "=0.10.0"
lazy_static = "1.4.0"
minreq = { version = "=2.2.1", features = ["https", "json-using-serde"] }
serde = { version = "1", features = ["derive"] }
base64 = "=0.13.0"
serde_json = "1"
parking_lot = "0.11.0"
arcropolis-api = { git = "https://github.com/Raytwo/arcropolis_api" }
nutexb = { git = "https://github.com/jam1garner/nutexb" }
bntx = { git = "https://github.com/jam1garner/bntx", branch = "main" }
image = "0.23.10"
percent-encoding = "=2.1.0"
color-thief = "0.2.1"
ordered-float = "2.0.0"
minecraft_render = { path = "../smash_minecraft_renders", optional = true }
[patch.crates-io]
ring = { git = "https://github.com/skyline-rs/ring" }
webpki = { git = "https://github.com/skyline-rs/webpki" }
getrandom = { git = "https://github.com/skyline-rs/getrandom", branch = "0.1" }
getrandom2 = { git = "https://github.com/skyline-rs/getrandom", branch = "master", package = "getrandom" }
[profile.dev]
panic = "abort"
[profile.release]
panic = "abort"
lto = true
[features]
default = ["renders"]
renders = ["minecraft_render"]