-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
69 lines (60 loc) · 1.48 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
workspace = { members = ["macros"] }
[package]
name = "dsvita"
version = "0.4.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[package.metadata.vita]
title_id = "DSVITA000"
title_name = "DSVita"
build_std = "std,panic_abort"
assets = "./static"
[dependencies]
bilge = { git = "https://github.com/Grarak/bilge.git" }
chrono = "0.4.38"
dsvita_macros = { path = "macros" }
gl = { git = "https://github.com/bjz/gl-rs" }
glyph_brush = "0.7.9"
lazy_static = "1.5.0"
rust-ini = "0.21.1"
static_assertions = "1.1.0"
paste = "1.0.15"
[target.armv7-unknown-linux-gnueabihf.dependencies]
clap = { version = "4.5.17", features = ["cargo"] }
libc = "0.2.153"
sdl2 = "0.35.0"
affinity = "0.1.2"
[build-dependencies]
bindgen = "0.70.0"
cc = "1.0.100"
[target.armv7-sony-vita-newlibeabihf.dependencies]
vitasdk-sys = { version = "0.3.2", features = [
"SceAppMgr_stub",
"SceAppUtil_stub",
"SceAudio_stub",
"SceCommonDialog_stub",
"SceCtrl_stub",
"SceDisplay_stub",
"SceGxm_stub",
"SceKernelThreadMgr_stub",
"SceLibKernel_stub",
"SceSysmem_stub",
"SceTouch_stub",
"ScePgf_stub",
"SceKernelDmacMgr_stub",
"SceShaccCg_stub",
"ScePower_stub",
# "SceRazorCapture_stub",
] }
[profile.release-debug]
inherits = "dev"
opt-level = 3
overflow-checks = true
debug-assertions = true
debug = true
panic = "abort"
[profile.release.package."*"]
opt-level = 3
[profile.release]
panic = "abort"
lto = "fat"