Bug 1744358 move MediaEngineDefault-specific MediaEngineSource classes out of header...
[gecko.git] / gfx / wgpu_bindings / Cargo.toml
bloba95442b6726d9d99ce144ea7a46cac9fd9429b52
1 [package]
2 name = "wgpu_bindings"
3 version = "0.1.0"
4 authors = [
5         "Dzmitry Malyshau <kvark@mozilla.com>",
6         "Joshua Groves <josh@joshgroves.com>",
8 edition = "2018"
9 license = "MPL-2.0"
10 publish = false
12 [lib]
14 [features]
15 default = []
17 [dependencies.wgc]
18 package = "wgpu-core"
19 git = "https://github.com/gfx-rs/wgpu"
20 rev = "28ba9d8"
21 #Note: "replay" shouldn't ideally be needed,
22 # but it allows us to serialize everything across IPC.
23 features = ["replay", "trace", "serial-pass"]
25 [dependencies.wgt]
26 package = "wgpu-types"
27 git = "https://github.com/gfx-rs/wgpu"
28 rev = "28ba9d8"
30 [dependencies.wgh]
31 package = "wgpu-hal"
32 git = "https://github.com/gfx-rs/wgpu"
33 rev = "28ba9d8"
35 [dependencies]
36 bincode = "1"
37 log = "0.4"
38 parking_lot = "0.11"
39 serde = "1"