-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
76 lines (64 loc) · 2.37 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
70
71
72
73
74
75
76
[package]
name = "ruffle_libretro"
version = "0.0.0"
edition = "2021"
build = "build.rs"
[lib]
crate_type = ["cdylib"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
arboard = "3.2.0"
ash = "0.37.1"
bytemuck = { version = "1.13.1", features = ["derive"] }
euclid = "0.22.7"
futures = "0.3.28"
gc-arena = { git = "https://github.com/kyren/gc-arena", rev = "fcc8764362d25f8724912dd7f09f2405779ec053" }
glow = "0.11.2"
isahc = "1.7.2"
libc = "0.2.139"
log = "0.4.17"
profiling = { version = "1.0", features = ["tracy-client"], optional = true }
ruffle_core = { git = "https://github.com/ruffle-rs/ruffle", rev = "7830a82", features = ["audio", "lzma", "mp3", "nellymoser"] }
ruffle_render = { git = "https://github.com/ruffle-rs/ruffle", rev = "7830a82", features = ["tessellator"] }
ruffle_video = { git = "https://github.com/ruffle-rs/ruffle", rev = "7830a82" }
ruffle_video_software = { git = "https://github.com/ruffle-rs/ruffle", rev = "7830a82" }
ruffle_render_wgpu = { git = "https://github.com/ruffle-rs/ruffle", rev = "7830a82", features = ["render_debug_labels"] }
rust-libretro = { git = "https://github.com/max-m/rust-libretro", branch = "dev", features = ["vulkan", "unstable-env-commands", "strict-bitflags", "log"] }
rust-libretro-sys = { git = "https://github.com/max-m/rust-libretro", branch = "dev", features = ["vulkan"] }
tap = "1.0.1"
thiserror = "1.0.38"
tracy-client = "0.15.1"
tracy-client-sys = {version = "0.20.0", features = ["manual-lifetime", "delayed-init"]}
url = "2.3.1"
webbrowser = "0.8.2"
wgpu = { version = "0.16", features = [ "angle", "expose-ids" ] }
wgpu-core = { version = "0.16" }
wgpu-hal = { version = "0.16", features = ["gles", "vulkan"] }
wgpu-types = { version = "0.16" }
[features]
default = []
profiler = ["profiling", "profiling/profile-with-tracy", "ruffle_render_wgpu/profile-with-tracy", "tracy-client/fibers"]
[profile.dev]
incremental = true
opt-level = 1
debug-assertions = true
overflow-checks = true
debug = true
[profile.release]
opt-level = 3
debug-assertions = false
overflow-checks = false
debug = false
lto = true
[profile.dev.package.h263-rs]
opt-level = 3
[profile.dev.package.h263-rs-yuv]
opt-level = 3
[profile.dev.package.nihav_core]
opt-level = 3
[profile.dev.package.nihav_codec_support]
opt-level = 3
[profile.dev.package.nihav_duck]
opt-level = 3
[build-dependencies]
built = "0.5"