blob: 99c9a33d5d88fde7f329dfd880ebc51bdcfa3b6d [file] [log] [blame]
Jason Macnak08bdde52021-08-30 14:41:47 -07001[package]
2name = "vulkano"
3version = "0.25.0"
4edition = "2018"
5authors = ["Pierre Krieger <pierre.krieger1708@gmail.com>", "The vulkano contributors"]
6repository = "https://github.com/vulkano-rs/vulkano"
7description = "Safe wrapper for the Vulkan graphics API"
8license = "MIT/Apache-2.0"
9documentation = "https://docs.rs/vulkano"
10homepage = "https://vulkano.rs"
11keywords = ["vulkan", "bindings", "graphics", "gpu", "rendering"]
12categories = ["rendering::graphics-api"]
13readme = "../README.md"
14build = "build.rs"
15
16[dependencies]
17# When updating Ash, also update vk.xml to the same Vulkan patch version that Ash uses.
18# All versions of vk.xml can be found at https://github.com/KhronosGroup/Vulkan-Headers/commits/master/registry/vk.xml.
19ash = "0.33.0"
20crossbeam-queue = "0.3"
21fnv = "1.0"
22half = "1.7"
23lazy_static = "1.4"
24parking_lot = { version = "0.11.1", features = ["send_guard"] }
25shared_library = "0.1"
26smallvec = "1.6"
27
28[build-dependencies]
29heck = "0.3"
30indexmap = "1.7"
31regex = "1.5"
32vk-parse = "0.6"