ash-molten/Cargo.toml

46 lines
1.5 KiB
TOML
Raw Normal View History

2019-06-05 18:22:29 +10:00
[package]
name = "ash-molten"
description = "Statically linked MoltenVK for Vulkan on Mac using Ash"
version = "0.13.1+1.1.10"
authors = [
"Embark <opensource@embark-studios.com>",
"Maik Klein <maik.klein@embark-studios.com>",
]
edition = "2021"
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"]
categories = ["api-bindings", "rendering", "os::macos-apis"]
2019-06-05 18:42:03 +10:00
repository = "https://github.com/EmbarkStudios/ash-molten"
homepage = "https://github.com/EmbarkStudios/ash-molten"
2019-06-05 18:42:03 +10:00
documentation = "https://docs.rs/ash-molten"
build = "build/build.rs"
2019-06-05 18:22:29 +10:00
[dependencies.ash]
# When breaking changes aren't needed (which is likely because of how little
# of `ash` is being interfaced with), it's beneficial to keep widening the
# version range range here, and only bumping `ash-molten`'s *patch* number.
#
# NB: you must check that `ash-molten` compiles with every `ash` version
# in this range, not just the start and the end, to be sure it's compatible.
version = ">=0.35, <=0.37"
default-features = false
2019-06-17 19:22:17 +10: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]
# 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
# Optional versions to use instead of the default version
v1_1_10 = []
v1_1_5 = []
2019-11-03 08:23:11 +11:00
[package.metadata.docs.rs]
default-target = "x86_64-apple-darwin"