-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
23 lines (21 loc) · 849 Bytes
/
Copy pathCargo.toml
File metadata and controls
23 lines (21 loc) · 849 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
[workspace]
resolver = "2"
members = [
"cube-memory-shader",
"cube-memory-shader-builder",
"cube-memory-host",
]
[workspace.package]
version = "0.1.0"
edition = "2021"
license = "MIT"
# rust-gpu requires a specific nightly toolchain. Pinned in
# rust-toolchain.toml at the workspace root. Run `rustup show` from
# this directory to confirm the right toolchain is active.
[workspace.dependencies]
# Tracking the current Rust-GPU/rust-gpu canonical release. The 0.9 line
# from 2023 (Embark era) is too old — its pinned nightly predates edition2024
# stabilization, breaking on transitive deps that adopted the 2024 edition.
# The Rust-GPU org took over and ships 0.10.0-alpha as of April 2026.
spirv-std = "=0.10.0-alpha.1"
spirv-builder = { version = "=0.10.0-alpha.1", default-features = false, features = ["use-installed-tools"] }