2022-01-24 23:47:05 +01:00
|
|
|
# Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
|
2021-03-01 11:31:13 +01:00
|
|
|
|
|
|
|
[package]
|
|
|
|
name = "deno_webgpu"
|
2022-02-24 14:40:57 -05:00
|
|
|
version = "0.39.0"
|
2021-03-01 11:31:13 +01:00
|
|
|
authors = ["the Deno authors"]
|
2021-11-02 15:03:37 +01:00
|
|
|
edition = "2021"
|
2021-03-01 11:31:13 +01:00
|
|
|
license = "MIT"
|
|
|
|
readme = "README.md"
|
2022-01-24 23:47:05 +01:00
|
|
|
repository = "https://github.com/gfx-rs/wgpu"
|
2021-08-02 10:19:27 -04:00
|
|
|
description = "WebGPU implementation for Deno"
|
2021-03-01 11:31:13 +01:00
|
|
|
|
|
|
|
[dependencies]
|
2022-02-24 14:40:57 -05:00
|
|
|
deno_core = { version = "0.120.0", path = "../../core" }
|
2022-01-24 23:47:05 +01:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
|
|
tokio = { version = "1.10", features = ["full"] }
|
|
|
|
wgpu-core = { version = "0.12", features = ["trace", "replay", "serde"] }
|
|
|
|
wgpu-types = { version = "0.12", features = ["trace", "replay", "serde"] }
|