1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-01 09:24:20 -04:00
denoland-deno/ext/webgpu/Cargo.toml

41 lines
1.2 KiB
TOML
Raw Normal View History

# Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
[package]
name = "deno_webgpu"
version = "0.88.0"
2023-01-30 09:14:16 -05:00
authors = ["the Deno authors"]
2022-11-22 15:07:35 -05:00
edition.workspace = true
2023-01-30 09:14:16 -05:00
license = "MIT"
readme = "README.md"
2022-01-24 17:47:05 -05:00
repository = "https://github.com/gfx-rs/wgpu"
description = "WebGPU implementation for Deno"
2023-01-30 09:14:16 -05:00
[features]
surface = ["wgpu-core/raw-window-handle", "dep:raw-window-handle"]
[dependencies]
2022-11-22 15:07:35 -05:00
deno_core.workspace = true
2023-01-30 09:14:16 -05:00
raw-window-handle = { workspace = true, optional = true }
2022-11-22 15:07:35 -05:00
serde.workspace = true
tokio.workspace = true
2023-01-30 09:14:16 -05:00
wgpu-types = { workspace = true, features = ["trace", "replay", "serde"] }
[dependencies.wgpu-core]
workspace = true
features = ["trace", "replay", "serde", "strict_asserts", "wgsl", "gles"]
# We want the wgpu-core Metal backend on macOS and iOS.
[target.'cfg(any(target_os = "macos", target_os = "ios"))'.dependencies.wgpu-core]
workspace = true
features = ["metal"]
# We want the wgpu-core Direct3D backends on Windows.
[target.'cfg(windows)'.dependencies.wgpu-core]
workspace = true
features = ["dx11", "dx12"]
# We want the wgpu-core Vulkan backend on Unix (but not Emscripten) and Windows.
[target.'cfg(any(windows, all(unix, not(target_arch = "emscripten"))))'.dependencies.wgpu-core]
workspace = true
features = ["vulkan"]