2021-04-20 01:27:36 -04:00
|
|
|
# Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
|
2021-03-01 05:31:13 -05:00
|
|
|
|
|
|
|
[package]
|
|
|
|
name = "deno_webgpu"
|
2021-09-14 15:38:35 -04:00
|
|
|
version = "0.18.0"
|
2021-03-01 05:31:13 -05:00
|
|
|
authors = ["the Deno authors"]
|
2021-08-02 10:19:27 -04:00
|
|
|
edition = "2018"
|
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]
|
2021-09-14 15:38:35 -04:00
|
|
|
deno_core = { version = "0.99.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"
|