forked from gfx-rs/metal-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
55 lines (45 loc) · 1.05 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
[package]
name = "metal-rs"
version = "0.6.0"
description = "Rust bindings for Metal"
documentation = "https://docs.rs/crate/metal-rs"
homepage = "https://github.com/gfx-rs/metal-rs"
repository = "https://github.com/gfx-rs/metal-rs"
authors = ["GFX Developers"]
readme = "README.md"
keywords = ["metal", "graphics", "bindings"]
license = "MIT OR Apache-2.0"
[package.metadata.docs.rs]
default-target = "x86_64-apple-darwin"
[dependencies]
cocoa = "0.13"
bitflags = "1"
libc = "0.2"
objc-foundation = "0.1"
objc_id = "0.1"
block = "0.1.5"
foreign-types = "0.3"
[dependencies.objc]
version = "0.2.1"
features = ["objc_exception"]
[dev-dependencies]
winit = "0.7"
sema = "0.1.4"
[[example]]
name = "window"
path = "examples/window/main.rs"
[[example]]
name = "library"
path = "examples/library/main.rs"
[[example]]
name = "reflection"
path = "examples/reflection/main.rs"
[[example]]
name = "caps"
path = "examples/caps/main.rs"
[[example]]
name = "argument-buffer"
path = "examples/argument-buffer/main.rs"
[[example]]
name = "compute"
path = "examples/compute/main.rs"