mirror of
https://github.com/gfx-rs/wgpu.git
synced 2024-11-22 06:44:14 +00:00
d5ba0b439d
* WIP: add cts_runner and deno_webgpu crate * add test * remove Cargo.lock * review comment * simplify * fix bugs * improve cts_runner to work with crowlKats/webgpu-examples * fix * remove build.rs cts_runner binaries are now not portable anymore. Also startup will now print a bunch of cargo:rerun-if-changed=. This will be fixed in deno_core. * remove d.ts * add original deno license file
21 lines
711 B
TOML
21 lines
711 B
TOML
# Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
|
|
|
|
[package]
|
|
name = "deno_webgpu"
|
|
version = "0.17.0"
|
|
authors = ["the Deno authors"]
|
|
edition = "2018"
|
|
license = "MIT"
|
|
readme = "README.md"
|
|
repository = "https://github.com/denoland/deno"
|
|
description = "WebGPU implementation for Deno"
|
|
|
|
[lib]
|
|
path = "lib.rs"
|
|
|
|
[dependencies]
|
|
deno_core = { git = "https://github.com/denoland/deno", rev = "ca75752e5a9499a0a997809f02b18c2ba1ecd58d" }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
tokio = { version = "1.10", features = ["full"] }
|
|
wgpu-core = { path = "../wgpu-core", features = ["trace", "replay", "serde"] }
|
|
wgpu-types = { path = "../wgpu-types", features = ["trace", "replay", "serde"] } |