This repository has been archived by the owner on Dec 8, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
41 lines (32 loc) · 1.89 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
[package]
name = "bevy-glsl-to-spirv"
version = "0.2.2"
authors = ["Pierre Krieger <[email protected]>", "The vulkano contributors", "Carter Anderson <[email protected]>", "Nicholas Rishel <[email protected]>", "Martin Krisnanto Putra <[email protected]>"]
description = "Deprecated. This crate is a temporary measure until native rust shader compilation like https://github.com/gfx-rs/naga lands."
repository = "https://github.com/cart/glsl-to-spirv"
license = "MIT/Apache-2.0"
categories = ["rendering::graphics-api"]
edition = "2018"
[dependencies]
# Default panic message handling
bevy-glsl-to-spirv-builder = { path = "glsl-to-spirv-builder", default-features = false }
# Pre-built libraries
[target.x86_64-unknown-linux-gnu.dependencies]
bevy-glsl-to-spirv-builder = { path = "glsl-to-spirv-builder", default-features = false }
[target.x86_64-apple-darwin.dependencies]
bevy-glsl-to-spirv-builder = { path = "glsl-to-spirv-builder", default-features = false }
[target.aarch64-linux-android.dependencies]
bevy-glsl-to-spirv-builder = { path = "glsl-to-spirv-builder", default-features = false }
[target.armv7-linux-androideabi.dependencies]
bevy-glsl-to-spirv-builder = { path = "glsl-to-spirv-builder", default-features = false }
# Optionally build from source in the future
# Wait for cargo resolver version 2
[target.x86_64-pc-windows-msvc.dependencies]
bevy-glsl-to-spirv-builder = { path = "glsl-to-spirv-builder", default-features = false }
# Always build from source
[target.i686-pc-windows-msvc.dependencies]
bevy-glsl-to-spirv-builder = { path = "glsl-to-spirv-builder", features = ["build-from-source"] }
[target.x86_64-pc-windows-gnu.dependencies]
bevy-glsl-to-spirv-builder = { path = "glsl-to-spirv-builder", features = ["build-from-source"] }
[target.i686-pc-windows-gnu.dependencies]
bevy-glsl-to-spirv-builder = { path = "glsl-to-spirv-builder", features = ["build-from-source"] }