24 lines
663 B
TOML
24 lines
663 B
TOML
[package]
|
|
name = "librashader-runtime-gl"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
librashader-common = { path = "../librashader-common", features = ["opengl"] }
|
|
librashader-presets = { path = "../librashader-presets" }
|
|
librashader-preprocess = { path = "../librashader-preprocess" }
|
|
librashader-reflect = { path = "../librashader-reflect" }
|
|
librashader-runtime = { path = "../librashader-runtime" }
|
|
spirv_cross = "0.23.1"
|
|
rustc-hash = "1.1.0"
|
|
gl = "0.14.0"
|
|
bytemuck = "1.12.3"
|
|
thiserror = "1.0.37"
|
|
|
|
[dev-dependencies]
|
|
glfw = "0.47.0"
|
|
|
|
[features]
|
|
gl4 = [] |