librashader/librashader-runtime-metal/Cargo.toml

44 lines
1.5 KiB
TOML
Raw Normal View History

2024-02-10 10:22:14 +11:00
[package]
name = "librashader-runtime-metal"
edition = "2021"
license = "MPL-2.0 OR GPL-3.0-only"
version = "0.2.0-beta.7"
authors = ["Ronny Chan <ronny@ronnychan.ca>"]
repository = "https://github.com/SnowflakePowered/librashader"
readme = "../README.md"
categories = ["emulators", "compilers", "graphics"]
keywords = ["shader", "retroarch", "SPIR-V"]
description = "RetroArch shaders for all."
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2024-02-10 16:04:16 +11:00
librashader-common = { path = "../librashader-common", features = ["metal"], version = "0.2.0-beta.7" }
2024-02-10 10:22:14 +11:00
librashader-presets = { path = "../librashader-presets", version = "0.2.0-beta.7" }
librashader-preprocess = { path = "../librashader-preprocess", version = "0.2.0-beta.7" }
librashader-reflect = { path = "../librashader-reflect", version = "0.2.0-beta.7" }
librashader-runtime = { path = "../librashader-runtime" , version = "0.2.0-beta.7" }
2024-02-12 10:01:13 +11:00
2024-02-10 16:04:16 +11:00
rustc-hash = "1.1.0"
thiserror = "1.0"
array-concat = "0.5.2"
bytemuck = { version = "1.12.3", features = ["derive"] }
rayon = "1.8.1"
2024-02-10 10:22:14 +11:00
2024-02-12 15:31:13 +11:00
[dev-dependencies.icrate]
version = "0.1.0"
features = ["AppKit", "AppKit_all", "Foundation", "Foundation_all", "MetalKit", "MetalKit_all"]
2024-02-10 10:22:14 +11:00
2024-02-12 16:12:08 +11:00
[[test]]
name = "triangle"
path = "tests/hello_triangle/main.rs"
harness = false
2024-02-10 10:22:14 +11:00
[package.metadata.docs.rs]
features = ["librashader-cache/docsrs"]
2024-02-12 10:01:13 +11:00
[target.'cfg(target_vendor="apple")'.dependencies]
icrate = { version = "0.1.0" , features = [ "Metal", "Metal_all" ]}
objc2 = { version = "0.5.0", features = ["apple"] }