19 lines
393 B
TOML
19 lines
393 B
TOML
[package]
|
|
name = "examples"
|
|
version = "0.1.0"
|
|
authors = ["maik klein <maikklein@googlemail.com>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
winit = "0.19.5"
|
|
image = "0.10.4"
|
|
ash = { path = "../ash" }
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
winapi = { version = "0.3.4", features = ["windef", "winuser"] }
|
|
|
|
[target.'cfg(target_os = "macos")'.dependencies]
|
|
metal = "0.17.1"
|
|
cocoa = "0.20.0"
|
|
objc = "0.2.7"
|