2022-07-19 20:22:26 -04:00
|
|
|
# Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
|
2021-03-01 05:31:13 -05:00
|
|
|
|
|
|
|
[package]
|
|
|
|
name = "deno_webgpu"
|
2022-09-15 16:24:06 -04:00
|
|
|
version = "0.70.0"
|
2021-03-01 05:31:13 -05:00
|
|
|
authors = ["the Deno authors"]
|
2021-11-02 10:03:37 -04:00
|
|
|
edition = "2021"
|
2021-03-01 05:31:13 -05:00
|
|
|
license = "MIT"
|
|
|
|
readme = "README.md"
|
2022-01-24 17:47:05 -05:00
|
|
|
repository = "https://github.com/gfx-rs/wgpu"
|
2021-08-02 10:19:27 -04:00
|
|
|
description = "WebGPU implementation for Deno"
|
2021-03-01 05:31:13 -05:00
|
|
|
|
|
|
|
[dependencies]
|
2022-09-15 16:24:06 -04:00
|
|
|
deno_core = { version = "0.151.0", path = "../../core" }
|
2022-01-24 17:47:05 -05:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
2022-09-16 19:11:30 -04:00
|
|
|
tokio = { version = "1.21", features = ["full"] }
|
2022-07-19 20:22:26 -04:00
|
|
|
wgpu-core = { version = "0.13", features = ["trace", "replay", "serde"] }
|
|
|
|
wgpu-types = { version = "0.13", features = ["trace", "replay", "serde"] }
|