forked from gfx-rs/gfx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
40 lines (37 loc) · 1.01 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
[package]
name = "gfx-backend-metal"
version = "0.1.0"
description = "Metal API backend for gfx-rs"
homepage = "https://github.com/gfx-rs/gfx"
repository = "https://github.com/gfx-rs/gfx"
keywords = ["graphics", "gamedev"]
license = "MIT OR Apache-2.0"
authors = ["The Gfx-rs Developers"]
readme = "README.md"
documentation = "https://docs.rs/gfx-backend-metal"
workspace = "../../.."
edition = "2018"
[features]
default = ["winit"]
auto-capture = []
[lib]
name = "gfx_backend_metal"
[dependencies]
hal = { path = "../../hal", version = "0.1", package = "gfx-hal" }
range-alloc = { path = "../../auxil/range-alloc", version = "0.1" }
arrayvec = "0.4"
bitflags = "1.0"
copyless = "0.1"
log = { version = "0.4" }
winit = { version = "0.19", optional = true }
dispatch = { version = "0.1", optional = true }
metal = { version = "0.14.0", features = ["private"] }
foreign-types = "0.3"
objc = "0.2.5"
block = "0.1"
cocoa = "0.18"
core-graphics = "0.17"
smallvec = "0.6"
spirv_cross = "0.12.1"
parking_lot = "0.6.3"
storage-map = "0.1.2"