1[package] 2name = "ash" 3version = "0.37.3+1.3.251" 4authors = [ 5 "Maik Klein <maikklein@googlemail.com>", 6 "Benjamin Saunders <ben.e.saunders@gmail.com>", 7 "Marijn Suijten <marijn@traverseresearch.nl>", 8] 9description = "Vulkan bindings for Rust" 10license = "MIT OR Apache-2.0" 11repository = "https://github.com/MaikKlein/ash" 12readme = "../README.md" 13keywords = ["vulkan", "graphic"] 14documentation = "https://docs.rs/ash" 15edition = "2021" 16rust-version = "1.59.0" 17 18[dependencies] 19libloading = { version = "0.7", optional = true } 20 21[features] 22default = ["loaded", "debug"] 23# Link the Vulkan loader at compile time. 24linked = [] 25# Support searching for the Vulkan loader manually at runtime. 26loaded = ["libloading"] 27# Whether Vulkan structs should implement Debug. 28debug = [] 29 30[package.metadata.release] 31no-dev-version = true 32 33[package.metadata.docs.rs] 34all-features = true 35rustdoc-args = ["--cfg", "docsrs"] 36