mirror of
https://github.com/touchHLE/touchHLE.git
synced 2026-01-31 01:25:24 +01:00
35 lines
986 B
TOML
35 lines
986 B
TOML
[workspace]
|
|
|
|
[workspace.package]
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[package]
|
|
name = "touchHLE"
|
|
version = { workspace = true }
|
|
edition = { workspace = true }
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[workspace.dependencies]
|
|
cc = "1.0.77"
|
|
cmake = "0.1.49"
|
|
gl_generator = "0.14.0"
|
|
|
|
[dependencies]
|
|
mach_object = "0.1.17"
|
|
plist = "1.3.1"
|
|
# sdl2 crates pinned at 0.35.1 because static linking seems to be broken for
|
|
# 0.35.2 on macOS (build errors about undefined symbols for
|
|
# _CHHapticDynamicParameterIDHapticIntensityControl etc)
|
|
sdl2 = { version = "=0.35.1", features = ["bundled", "static-link"] }
|
|
sdl2-sys = "=0.35.1"
|
|
touchHLE_dynarmic_wrapper = { path = "src/cpu/dynarmic_wrapper" }
|
|
touchHLE_gl_bindings = { path = "src/window/gl_bindings" }
|
|
touchHLE_stb_image_wrapper = { path = "src/image/stb_image_wrapper" }
|
|
|
|
[build-dependencies]
|
|
cc = { workspace = true }
|
|
cmake = { workspace = true }
|
|
gl_generator = { workspace = true }
|