2022-01-07 22:09:52 -05: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-01-06 07:20:42 -05:00
|
|
|
version = "0.32.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"
|
|
|
|
repository = "https://github.com/denoland/deno"
|
2021-08-02 10:19:27 -04:00
|
|
|
description = "WebGPU implementation for Deno"
|
2021-03-01 05:31:13 -05:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
path = "lib.rs"
|
|
|
|
|
|
|
|
[dependencies]
|
2022-01-06 07:20:42 -05:00
|
|
|
deno_core = { version = "0.113.0", path = "../../core" }
|
2021-09-02 17:38:44 -04:00
|
|
|
serde = { version = "1.0.129", features = ["derive"] }
|
|
|
|
tokio = { version = "1.10.1", features = ["full"] }
|
|
|
|
wgpu-core = { version = "0.10.1", features = ["trace"] }
|
2021-08-24 07:29:42 -04:00
|
|
|
wgpu-types = "0.10.0"
|