forked from gfx-rs/wgpu-native
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
59 lines (51 loc) · 1.25 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
54
55
56
57
58
59
[package]
name = "wgpu-native"
version = "0.6.0"
authors = [
"Dzmitry Malyshau <kvark@mozilla.com>",
"Joshua Groves <josh@joshgroves.com>",
"Noah Charlton <ncharlton002@gmail.com>",
"Almar Klein <almar@almarklein.org>",
]
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 = "MIT OR Apache-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 = "988990c"
# path = "../wgpu/wgpu-core"
#version = "0.11"
features = ["raw-window-handle", "trace"]
[dependencies.wgt]
package = "wgpu-types"
git = "https://github.com/gfx-rs/wgpu"
rev = "988990c"
# path = "../wgpu/wgpu-types"
#version = "0.11"
[dependencies]
lazy_static = "1.1"
raw-window-handle = "0.4"
paste = "1.0"
log = "0.4"
thiserror = "1"
[dependencies.naga]
git = "https://github.com/gfx-rs/naga"
rev = "f90e563"
features = ["spv-in"]
[build-dependencies]
bindgen = "0.58.1"
[workspace]
resolver = "2"
members = [
"examples/helper"
]