2022-12-04 10:32:10 +11:00
|
|
|
[package]
|
|
|
|
name = "librashader-capi"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
license = "MPL-2.0 OR GPL-3.0-only"
|
2023-01-15 19:01:50 +11:00
|
|
|
version = "0.1.0-beta.5"
|
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-01-14 09:59:22 +11:00
|
|
|
default = ["runtime-opengl", "runtime-d3d11", "runtime-vulkan"]
|
2022-12-05 14:37:03 +11:00
|
|
|
runtime-opengl = ["gl", "librashader/gl"]
|
2022-12-05 14:48:57 +11:00
|
|
|
runtime-d3d11 = ["windows", "librashader/d3d11"]
|
2023-01-14 09:59:22 +11:00
|
|
|
runtime-vulkan = ["ash", "librashader/vk"]
|
2022-12-04 10:32:10 +11:00
|
|
|
|
2023-01-15 12:13:15 +11:00
|
|
|
# Do not enable, for docs.rs build only.
|
|
|
|
docsrs = []
|
|
|
|
|
2022-12-04 10:32:10 +11:00
|
|
|
[dependencies]
|
2023-01-15 19:01:50 +11:00
|
|
|
librashader = { path = "../librashader", version = "0.1.0-beta.5" }
|
2022-12-04 10:32:10 +11:00
|
|
|
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-01-14 09:59:22 +11:00
|
|
|
ash = { version = "0.37.2+1.3.238", optional = true }
|
2022-12-04 10:32:10 +11:00
|
|
|
|
2023-01-15 12:13:15 +11:00
|
|
|
[dependencies.windows]
|
2022-12-05 14:48:57 +11:00
|
|
|
version = "0.43.0"
|
|
|
|
features = [
|
|
|
|
"Win32_Graphics_Direct3D11",
|
|
|
|
]
|
|
|
|
optional = true
|
|
|
|
|
2022-12-06 09:30:48 +11:00
|
|
|
[package.metadata.cargo-post.dependencies]
|
2023-01-14 08:05:13 +11:00
|
|
|
cbindgen = { git = "https://github.com/eqrion/cbindgen" }
|
2023-01-15 11:05:15 +11:00
|
|
|
|
|
|
|
[package.metadata.docs.rs]
|
2023-01-15 12:13:15 +11:00
|
|
|
features = ["docsrs"]
|