forked from gfx-rs/wgpu-native
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
53 lines (45 loc) · 1.24 KB
/
Cargo.toml
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
[package]
name = "wgpu-native"
version = "0.6.0"
authors = [
"Dzmitry Malyshau <kvark@mozilla.com>",
"Joshua Groves <josh@joshgroves.com>",
]
edition = "2018"
description = "WebGPU native implementation on gfx-hal"
homepage = "https://github.com/gfx-rs/wgpu-native"
repository = "https://github.com/gfx-rs/wgpu-native"
keywords = ["graphics"]
license = "MPL-2.0"
[lib]
crate-type = ["lib", "cdylib", "staticlib"]
[features]
default = []
#metal-auto-capture = ["gfx-backend-metal/auto-capture"]
#vulkan-portability = ["wgc/gfx-backend-vulkan"]
[dependencies.wgc]
package = "wgpu-core"
git = "https://github.com/gfx-rs/wgpu"
rev = "7ce535cc97958d8e224247764f3d57c162594504"
# path = "../wgpu/wgpu-core"
version = "0.8"
features = ["raw-window-handle", "trace", "cross"]
[dependencies.wgt]
package = "wgpu-types"
git = "https://github.com/gfx-rs/wgpu"
rev = "7ce535cc97958d8e224247764f3d57c162594504"
# path = "../wgpu/wgpu-types"
version = "0.8"
[dependencies]
lazy_static = "1.1"
raw-window-handle = "0.3"
paste = "1.0"
log = "0.4"
# [target.'cfg(all(unix, not(target_os = "ios"), not(target_os = "macos")))'.dependencies]
# gfx-backend-vulkan = { version = "0.7", features = [] }
[build-dependencies]
bindgen = "0.53.1"
[workspace]
members = [
"examples/helper"
]