-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathCargo.toml
More file actions
103 lines (89 loc) · 2.43 KB
/
Cargo.toml
File metadata and controls
103 lines (89 loc) · 2.43 KB
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
workspace = { members = ["macros", "vitabuild", "vitaGL", "vixl", "rcheevos"] }
[package]
name = "dsvita"
version = "0.9.2"
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,core,panic_abort,alloc"
assets = "./static"
vita_make_fself_flags = ["-a", "0x2800000000000001", "-na"]
[dependencies]
bilge = { git = "https://github.com/Grarak/bilge.git" }
chrono = "0.4.40"
dsvita_macros = { path = "macros" }
enum_dispatch = "0.3.13"
gl = { git = "https://github.com/bjz/gl-rs" }
glyph_brush = "0.7.12"
lazy_static = "1.5.0"
nalgebra = "0.34.1"
paste = "1.0.15"
rust-ini = "0.21.1"
static_assertions = "1.1.0"
strum = "0.27.1"
strum_macros = "0.27.1"
vixl = { path = "vixl" }
xxhash-rust = { version = "0.8.15", features = ["xxh32"] }
libc = "0.2.149"
png = "0.18.1"
rcheevos = { path = "rcheevos" }
[patch.crates-io]
simd-adler32 = { git = 'https://github.com/Grarak/simd-adler32.git' }
[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"
backtrace = "0.3.74"
reqwest = { version = "0.11", default-features = false, features = ["blocking", "rustls-tls"] }
[build-dependencies]
bindgen = "0.71.1"
vitabuild = { path = "vitabuild" }
[target.armv7-sony-vita-newlibeabihf.dependencies]
vitasdk-sys = { version = "0.3.2", features = [
"SceAppMgr_stub",
"SceAppUtil_stub",
"SceAudio_stub",
"SceAudioIn_stub",
"SceCommonDialog_stub",
"SceCtrl_stub",
"SceDisplay_stub",
"SceGxm_stub",
"SceKernelDmacMgr_stub",
"SceKernelThreadMgr_stub",
"SceLibKernel_stub",
"ScePgf_stub",
"ScePower_stub",
# "SceRazorCapture_stub",
"SceShaccCg_stub",
"SceShellSvc_stub",
"SceSysmem_stub",
"SceSysrootForKernel_stub",
"SceTouch_stub",
"SceVshBridge_stub",
] }
vita_gl = { path = "vitaGL" }
openssl-sys = "=0.9.111"
reqwest = { version = "0.11", default-features = false, features = ["blocking", "native-tls"] }
[profile.release-debug]
inherits = "dev"
opt-level = 3
overflow-checks = true
debug-assertions = true
debug = true
[profile.release.package."*"]
opt-level = 3
codegen-units = 2
[profile.release]
panic = "abort"
lto = true
opt-level = 3
codegen-units = 2
[profile.release-profiling]
inherits = "release"
panic = "abort"
lto = true
opt-level = 3
debug = true