forked from gfx-rs/gfx
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
31 lines (26 loc) · 827 Bytes
/
Cargo.toml
File metadata and controls
31 lines (26 loc) · 827 Bytes
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 = "gfx-hal"
version = "0.9.0"
description = "gfx-rs hardware abstraction layer"
homepage = "https://github.com/gfx-rs/gfx"
repository = "https://github.com/gfx-rs/gfx"
keywords = ["graphics"]
license = "MIT OR Apache-2.0"
authors = ["The Gfx-rs Developers"]
documentation = "https://docs.rs/gfx-hal"
workspace = "../.."
edition = "2018"
[features]
unstable = []
[lib]
name = "gfx_hal"
path = "src/lib.rs"
[dependencies]
bitflags = "1.0"
naga = { git = "https://github.com/gfx-rs/naga", tag = "gfx-26" }
raw-window-handle = "0.5"
serde = { version = "1", features = ["serde_derive"], optional = true }
thiserror = "1"
external_memory = { path = "../auxil/external-memory", version = "0.0.1", package = "external-memory" }
[dev-dependencies]
gfx-backend-empty = { path = "../backend/empty", version = "0.9" }