2019-06-05 18:22:29 +10:00
|
|
|
[package]
|
|
|
|
name = "ash-molten"
|
2019-06-27 18:58:59 +10:00
|
|
|
description = "Statically linked MoltenVK for Vulkan on Mac using Ash"
|
2021-08-31 23:56:43 +10:00
|
|
|
version = "0.10.0+1.1.5"
|
2019-06-29 09:37:39 +10:00
|
|
|
authors = ["Embark <opensource@embark-studios.com>", "Maik Klein <maik.klein@embark-studios.com>"]
|
2019-06-05 18:22:29 +10:00
|
|
|
edition = "2018"
|
2019-10-26 06:58:03 +11:00
|
|
|
license = "MIT OR Apache-2.0"
|
2019-06-05 18:42:03 +10:00
|
|
|
readme = "README.md"
|
|
|
|
keywords = ["vulkan", "metal"]
|
2019-06-27 18:58:59 +10:00
|
|
|
categories = ["api-bindings", "rendering", "os::macos-apis"]
|
2019-06-05 18:42:03 +10:00
|
|
|
repository = "https://github.com/EmbarkStudios/ash-molten"
|
2019-06-26 00:37:46 +10:00
|
|
|
homepage = "https://github.com/EmbarkStudios/ash-molten"
|
2019-06-05 18:42:03 +10:00
|
|
|
documentation = "https://docs.rs/ash-molten"
|
2021-03-06 03:47:52 +11:00
|
|
|
build = "build/build.rs"
|
2019-06-05 18:22:29 +10:00
|
|
|
|
|
|
|
[dependencies]
|
2021-03-08 21:08:10 +11:00
|
|
|
ash = "0.32"
|
2019-06-17 19:22:17 +10:00
|
|
|
|
2021-03-06 03:47:52 +11:00
|
|
|
[build-dependencies]
|
|
|
|
anyhow = "1.0"
|
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
|
|
plist = { version = "1.0" }
|
|
|
|
|
2019-06-17 19:22:17 +10:00
|
|
|
[features]
|
2020-11-15 10:53:14 +11:00
|
|
|
# Build features
|
|
|
|
# Without build feature enabled MoltenVK will be build from source
|
|
|
|
external = [] # Supply own MoltenVK lib
|
|
|
|
pre-built = [] # Download pre-built MoltenVK from github release
|
|
|
|
|
2019-11-03 08:23:11 +11:00
|
|
|
|
|
|
|
[package.metadata.docs.rs]
|
2020-03-23 21:53:19 +11:00
|
|
|
default-target = "x86_64-apple-darwin"
|