/
githubmirror
/
deno
Обзор
Документация
Войти
/
githubmirror
/
deno
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
ext/webgpu/Cargo.toml
48 строк
1 KB
denobot
chore: forward v2.9.5 release commit to main (#36452)
06 авг 2026, 18:08
Не верифицирован
06 авг 2026, 18:08
903d670
Код
Авторство
О чём код?
# Copyright 2018-2026 the Deno authors. MIT license. [package] name = "deno_webgpu" version = "0.224.0" authors.workspace = true edition.workspace = true license.workspace = true readme = "README.md" repository.workspace = true description = "WebGPU implementation for Deno" [lib] path = "lib.rs" # We make all dependencies conditional on not being wasm, # so the whole workspace can built as wasm. [target.'cfg(not(target_arch = "wasm32"))'.dependencies] wgpu-core = { workspace = true, features = ["trace", "replay", "serde", "strict_asserts", "wgsl", "gles"] } wgpu-types = { workspace = true, features = ["serde", "std"] } deno_core.workspace = true deno_error.workspace = true serde = { workspace = true, features = ["derive"] } tokio = { workspace = true, features = ["full"] } raw-window-handle.workspace = true thiserror.workspace = true indexmap.workspace = true serde_json.workspace = true deno_image.workspace = true # Apple Platforms # # We want the Metal backend. [target.'cfg(target_vendor = "apple")'.dependencies] wgpu-core = { workspace = true, features = ["metal"] } # Windows # # We want the DX12 backend. [target.'cfg(windows)'.dependencies] wgpu-core = { workspace = true, features = ["dx12"] } # Windows and Unix (not Emscripten) # # We want the Vulkan backend. [target.'cfg(any(windows, all(unix, not(target_os = "emscripten"))))'.dependencies] wgpu-core = { workspace = true, features = ["vulkan"] }