Move Deno out of the workspace

This commit is contained in:
Dzmitry Malyshau 2021-09-07 18:04:28 -04:00 committed by Dzmitry Malyshau
parent 60142b56da
commit a7c7c9f38e
17 changed files with 6 additions and 6 deletions

2
.gitignore vendored
View File

@ -1,6 +1,6 @@
# Generated by Cargo
# will have compiled files and executables
/target/
target/
Cargo.lock
# These are backup files generated by rustfmt

View File

@ -1,8 +1,6 @@
[workspace]
resolver = "2"
members = [
"cts_runner",
"deno_webgpu",
"dummy",
"player",
"wgpu",
@ -11,6 +9,10 @@ members = [
"wgpu-info",
"wgpu-types",
]
exclude = [
"cts_runner",
"deno_webgpu",
]
default-members = ["wgpu", "wgpu-hal", "wgpu-info"]
[patch."https://github.com/gfx-rs/naga"]

View File

@ -8,6 +8,7 @@ edition = "2018"
description = "CTS runner for wgpu"
license = "MIT OR Apache-2.0"
publish = false
resolver = "2"
[dependencies]
deno_console = { git = "https://github.com/denoland/deno", rev = "ca75752e5a9499a0a997809f02b18c2ba1ecd58d" }

View File

@ -10,9 +10,6 @@ readme = "README.md"
repository = "https://github.com/gfx-rs/wgpu"
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"] }