2022-12-04 10:32:10 +11:00
|
|
|
[package]
|
|
|
|
name = "librashader-capi"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
license = "MPL-2.0 OR GPL-3.0-only"
|
2022-12-04 13:26:02 +11:00
|
|
|
version = "0.1.0-alpha.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."
|
2022-12-04 13:25:43 +11:00
|
|
|
publish = false
|
2022-12-04 10:32:10 +11:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
crate-type = [ "cdylib", "staticlib", "lib" ]
|
|
|
|
|
|
|
|
[features]
|
|
|
|
#default = ["runtime-opengl"]
|
|
|
|
#runtime-opengl = ["gl", "librashader/gl"]
|
|
|
|
headers = ["safer-ffi/headers"]
|
|
|
|
|
|
|
|
[dependencies]
|
2022-12-04 13:26:02 +11:00
|
|
|
librashader = { path = "../librashader", version = "0.1.0-alpha.2", features = ["gl"] }
|
2022-12-04 10:32:10 +11:00
|
|
|
thiserror = "1.0.37"
|
|
|
|
paste = "1.0.9"
|
|
|
|
gl = { version = "0.14.0" }
|
|
|
|
safer-ffi = { version = "0.0.10", repository = "https://github.com/getditto/safer_ffi" }
|
|
|
|
|
|
|
|
[build-dependencies]
|
2022-12-04 13:26:02 +11:00
|
|
|
cbindgen = "0.24.3"
|