2022-12-04 10:32:10 +11:00
|
|
|
[package]
|
|
|
|
name = "librashader-capi"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
license = "MPL-2.0 OR GPL-3.0-only"
|
2024-02-15 12:51:57 +11:00
|
|
|
version = "0.2.0-rc.2"
|
2022-12-04 10:32:10 +11:00
|
|
|
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."
|
|
|
|
|
|
|
|
[lib]
|
2022-12-06 09:30:48 +11:00
|
|
|
crate-type = [ "cdylib", "staticlib" ]
|
2022-12-04 10:32:10 +11:00
|
|
|
|
|
|
|
[features]
|
2023-02-16 17:09:43 +11:00
|
|
|
default = ["runtime-all" ]
|
2024-02-13 19:03:45 +11:00
|
|
|
runtime-all = ["runtime-opengl", "runtime-d3d11", "runtime-d3d12", "runtime-vulkan", "runtime-metal"]
|
2023-02-08 10:50:26 +11:00
|
|
|
runtime-opengl = ["gl", "librashader/runtime-gl"]
|
|
|
|
runtime-d3d11 = ["windows", "librashader/runtime-d3d11", "windows/Win32_Graphics_Direct3D11"]
|
|
|
|
runtime-d3d12 = ["windows", "librashader/runtime-d3d12", "windows/Win32_Graphics_Direct3D12"]
|
|
|
|
runtime-vulkan = ["ash", "librashader/runtime-vk"]
|
2024-02-13 19:03:45 +11:00
|
|
|
runtime-metal = ["__cbindgen_internal_objc", "librashader/runtime-metal"]
|
|
|
|
|
|
|
|
__cbindgen_internal = ["runtime-all"]
|
|
|
|
|
|
|
|
# make runtime-metal depend on this, so its automatically implied.
|
|
|
|
# this will make cbindgen generate __OBJC__ ifdefs for metal functions.
|
|
|
|
__cbindgen_internal_objc = ["icrate", "objc2"]
|
2022-12-04 10:32:10 +11:00
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
thiserror = "1.0.37"
|
|
|
|
paste = "1.0.9"
|
2022-12-05 14:37:03 +11:00
|
|
|
gl = { version = "0.14.0", optional = true }
|
2023-01-03 10:22:52 +11:00
|
|
|
rustc-hash = "1.1.0"
|
2023-11-30 17:56:12 +11:00
|
|
|
ash = { version = "0.37", optional = true }
|
2024-02-12 16:12:08 +11:00
|
|
|
spirv_cross = { package = "librashader-spirv-cross", version = "0.25.1" }
|
2022-12-04 10:32:10 +11:00
|
|
|
|
2024-02-14 19:04:40 +11:00
|
|
|
[dependencies.librashader]
|
|
|
|
path = "../librashader"
|
2024-02-15 12:51:57 +11:00
|
|
|
version = "0.2.0-rc.2"
|
2024-02-14 19:04:40 +11:00
|
|
|
default-features = false
|
|
|
|
features = ["presets", "preprocess"]
|
|
|
|
|
2023-01-21 17:54:06 +11:00
|
|
|
[target.'cfg(windows)'.dependencies.windows]
|
2023-04-23 15:13:31 +10:00
|
|
|
version = "0.48.0"
|
2022-12-05 14:48:57 +11:00
|
|
|
optional = true
|
|
|
|
|
2024-02-13 15:44:37 +11:00
|
|
|
[target.'cfg(target_vendor="apple")'.dependencies]
|
|
|
|
icrate = { version = "0.1.0" , features = [ "Metal", "Metal_all" ], optional = true }
|
|
|
|
objc2 = { version = "0.5.0", features = ["apple"] , optional = true }
|
|
|
|
|
2023-01-15 11:05:15 +11:00
|
|
|
[package.metadata.docs.rs]
|
2024-02-15 10:10:52 +11:00
|
|
|
targets = [ "x86_64-pc-windows-msvc",
|
|
|
|
"x86_64-unknown-linux-gnu",
|
|
|
|
"x86_64-apple-darwin",
|
|
|
|
"aarch64-apple-darwin",
|
|
|
|
"aarch64-apple-ios",
|
|
|
|
"i686-pc-windows-msvc",
|
|
|
|
"i686-unknown-linux-gnu", ]
|
2023-02-16 17:11:55 +11:00
|
|
|
features = ["librashader/docsrs"]
|