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-07-26 03:31:58 +00:00
|
|
|
version = "0.63.0"
|
2021-09-03 17:23:35 +00:00
|
|
|
authors = ["the Deno authors"]
|
2022-06-30 18:24:17 +00:00
|
|
|
edition = "2021"
|
2021-09-03 17:23:35 +00:00
|
|
|
license = "MIT"
|
|
|
|
readme = "README.md"
|
2021-09-03 17:53:10 +00:00
|
|
|
repository = "https://github.com/gfx-rs/wgpu"
|
2021-09-03 17:23:35 +00:00
|
|
|
description = "WebGPU implementation for Deno"
|
|
|
|
|
|
|
|
[dependencies]
|
2022-09-20 16:06:12 +00:00
|
|
|
deno_core = "0.151.0"
|
2021-09-03 17:23:35 +00:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
2022-07-26 03:31:58 +00:00
|
|
|
tokio = { version = "1.19", features = ["full"] }
|
2022-10-08 05:12:50 +00:00
|
|
|
wgpu-core = { path = "../wgpu-core", features = ["trace", "replay", "serde", "strict_asserts", "wgsl"] }
|
2021-09-03 17:53:10 +00:00
|
|
|
wgpu-types = { path = "../wgpu-types", features = ["trace", "replay", "serde"] }
|