2022-02-04 19:31:46 +00:00
|
|
|
# Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
|
2021-09-03 17:23:35 +00:00
|
|
|
|
|
|
|
[package]
|
|
|
|
name = "deno_webgpu"
|
2022-12-03 17:35:10 +00:00
|
|
|
version = "0.81.0"
|
2021-09-03 17:23:35 +00:00
|
|
|
authors = ["the Deno authors"]
|
2022-10-20 05:41:17 +00:00
|
|
|
edition.workspace = true
|
2021-09-03 17:23:35 +00:00
|
|
|
license = "MIT"
|
|
|
|
readme = "README.md"
|
2022-10-20 05:41:17 +00:00
|
|
|
repository.workspace = true
|
2021-09-03 17:23:35 +00:00
|
|
|
description = "WebGPU implementation for Deno"
|
|
|
|
|
|
|
|
[dependencies]
|
2022-10-20 05:41:17 +00:00
|
|
|
deno_core.workspace = true
|
|
|
|
serde = { workspace = true, features = ["derive"] }
|
|
|
|
tokio = { workspace = true, features = ["full"] }
|
|
|
|
wgpu-core = { workspace = true, features = ["trace", "replay", "serde", "strict_asserts", "wgsl"] }
|
|
|
|
wgpu-types = { workspace = true, features = ["trace", "replay", "serde"] }
|