-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathCargo.toml
More file actions
24 lines (22 loc) · 779 Bytes
/
Cargo.toml
File metadata and controls
24 lines (22 loc) · 779 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
[workspace]
members = [
"spirv-tools",
"spirv-tools-sys",
"examples/assembler",
"tools/generate",
]
resolver = "2"
[workspace.package]
description = "Wrapper crate for SPIRV-Tools"
repository = "https://github.com/rust-gpu/spirv-tools-rs"
version = "0.13.3"
authors = ["rust-gpu developers", "Embark <opensource@embark-studios.com>"]
edition = "2024"
license = "MIT OR Apache-2.0"
documentation = "https://docs.rs/spirv-tools"
homepage = "https://github.com/rust-gpu/spirv-tools-rs"
keywords = ["spir-v", "rust-gpu"]
categories = ["rendering::data-formats"]
[workspace.dependencies]
spirv-tools = { path = "spirv-tools", version = "0.13.3", default-features = false }
spirv-tools-sys = { path = "spirv-tools-sys", version = "0.13.3", default-features = false }