1700dcdf05
When disabled, this buys us a 12% reduction in buildtime.
30 lines
760 B
TOML
30 lines
760 B
TOML
[package]
|
|
name = "ash"
|
|
version = "0.33.3+1.2.191"
|
|
authors = ["maik klein <maikklein@googlemail.com>"]
|
|
description = "Vulkan bindings for Rust"
|
|
license = "MIT"
|
|
repository = "https://github.com/MaikKlein/ash"
|
|
readme = "../README.md"
|
|
keywords = ["vulkan", "graphic"]
|
|
documentation = "https://docs.rs/ash"
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
libloading = { version = "0.7", optional = true }
|
|
|
|
[features]
|
|
default = ["linked", "debug"]
|
|
# Link the Vulkan loader at compile time.
|
|
linked = []
|
|
# Support searching for the Vulkan loader manually at runtime.
|
|
loaded = ["libloading"]
|
|
# Whether Vulkan structs should implement Debug
|
|
debug = []
|
|
|
|
[package.metadata.release]
|
|
no-dev-version = true
|
|
|
|
[package.metadata.docs.rs]
|
|
all-features = true
|
|
rustdoc-args = ["--cfg", "docsrs"]
|