-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
41 lines (36 loc) · 1.35 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
[package]
name = "mvi"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = { version = "1.0.72", features = ["backtrace"] }
bytemuck = { version = "1.14.0", features = ["derive"] }
cfg-if = "1.0.0"
ciborium = "0.2.1"
cpal = "0.15.2"
crossbeam = "0.8.2"
dirs = "5.0.1"
flate2 = { version = "1.0.28", default-features = false, features = ["zlib-ng"] }
imgui = { git = "https://github.com/imgui-rs/imgui-rs", rev = "67f7f11363e62f09aa0e1288a17800e505860486", features = ["docking", "tables-api"] }
imgui-winit-support = { git = "https://github.com/imgui-rs/imgui-rs", rev = "67f7f11363e62f09aa0e1288a17800e505860486" }
libloading = "0.8.0"
libretro-ffi = { version = "0.1.0", path = "libretro-ffi" }
reqwest = "0.12.5"
rfd = "0.14.1"
rubato = "0.15.0"
rust-ini = "0.21.0"
serde = { version = "1.0.193", features = ["derive"] }
serde_json = "1.0.108"
sha2 = "0.10.8"
smallvec = "1.11.2"
thiserror = "1.0.51"
tokio = { version = "1.35.1", features = ["rt-multi-thread"] }
uuid = { version = "1.6.1", features = ["serde", "v4"] }
vulkano = "0.34.0"
vulkano-shaders = "0.34.0"
vulkano-util = "0.34.0"
winit = { version = "0.29", features = ["rwh_05", "serde"] }
zip = { version = "2.1.3", features = ["deflate", "zstd", "bzip2"], default-features = false }
[profile.dev]
opt-level = 1