blob: 43f2287a7137624a34807004d9371cde92f856b7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
[package]
name = "wgpu_bindings"
version = "0.1.0"
authors = [
"Dzmitry Malyshau <kvark@mozilla.com>",
"Joshua Groves <josh@joshgroves.com>",
]
edition = "2018"
license = "MPL-2.0"
publish = false
[lib]
[features]
default = []
[dependencies.wgc]
path = "../wgpu/wgpu-core"
package = "wgpu-core"
features = ["replay", "trace", "serial-pass"]
[dependencies.wgt]
path = "../wgpu/wgpu-types"
package = "wgpu-types"
[dependencies]
bincode = "1"
log = "0.4"
parking_lot = "0.11"
serde = "1"
|