2023-02-13 14:36:50 +11:00
|
|
|
[package]
|
|
|
|
name = "librashader-cache"
|
|
|
|
edition = "2021"
|
|
|
|
license = "MPL-2.0 OR GPL-3.0-only"
|
2023-02-20 07:38:43 +11:00
|
|
|
version = "0.1.1"
|
2023-02-13 14:36:50 +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."
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
serde = { version = "1.0" }
|
2023-02-20 07:38:43 +11:00
|
|
|
librashader-reflect = { path = "../librashader-reflect", version = "0.1.1", features = ["serialize", "dxil"] }
|
|
|
|
librashader-preprocess = { path = "../librashader-preprocess", version = "0.1.1" }
|
2023-02-13 14:36:50 +11:00
|
|
|
platform-dirs = "0.3.0"
|
2023-02-16 16:39:36 +11:00
|
|
|
blake3 = { version = "1.3.3" }
|
2023-02-13 14:36:50 +11:00
|
|
|
thiserror = "1.0.38"
|
|
|
|
bincode = { version = "2.0.0-rc.2", features = ["serde"] }
|
2023-02-16 17:09:43 +11:00
|
|
|
rusqlite = { version = "0.28.0", features = ["bundled"] }
|
2023-02-13 14:36:50 +11:00
|
|
|
|
|
|
|
bytemuck = "1.13.0"
|
|
|
|
|
|
|
|
[target.'cfg(windows)'.dependencies.windows]
|
|
|
|
version = "0.44.0"
|
|
|
|
features = [
|
|
|
|
"Win32_Graphics_Direct3D",
|
|
|
|
"Win32_Graphics_Direct3D_Fxc",
|
|
|
|
"Win32_Graphics_Direct3D_Dxc",
|
|
|
|
]
|
|
|
|
optional = true
|
|
|
|
|
|
|
|
[features]
|
|
|
|
d3d = ["windows"]
|
2023-02-16 17:09:43 +11:00
|
|
|
|
|
|
|
# hack to get building on docsrs
|
|
|
|
docsrs = ["blake3/pure", "rusqlite/in_gecko"]
|
2023-02-16 16:39:36 +11:00
|
|
|
|
|
|
|
[package.metadata.docs.rs]
|
2023-02-16 16:55:47 +11:00
|
|
|
features = ["docsrs"]
|