2022-01-24 17:47:05 -05:00
|
|
|
# Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
|
2021-03-01 05:31:13 -05:00
|
|
|
|
|
|
|
[package]
|
|
|
|
name = "deno_webgpu"
|
2022-07-05 11:44:22 -04:00
|
|
|
version = "0.61.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-07-05 11:44:22 -04:00
|
|
|
deno_core = { version = "0.142.0", path = "../../core" }
|
2022-01-24 17:47:05 -05:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
2022-04-02 13:54:40 -04:00
|
|
|
tokio = { version = "1.17", features = ["full"] }
|
2022-01-24 17:47:05 -05:00
|
|
|
wgpu-core = { version = "0.12", features = ["trace", "replay", "serde"] }
|
|
|
|
wgpu-types = { version = "0.12", features = ["trace", "replay", "serde"] }
|