• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1[package]
2name = "vulkano"
3version = "0.33.0"
4edition = "2021"
5authors = [
6    "Pierre Krieger <pierre.krieger1708@gmail.com>",
7    "The vulkano contributors",
8]
9repository = "https://github.com/vulkano-rs/vulkano"
10description = "Safe wrapper for the Vulkan graphics API"
11license = "MIT/Apache-2.0"
12documentation = "https://docs.rs/vulkano"
13homepage = "https://vulkano.rs"
14keywords = ["vulkan", "bindings", "graphics", "gpu", "rendering"]
15categories = ["rendering::graphics-api"]
16readme = "../README.md"
17build = "build.rs"
18
19[dependencies]
20ahash = "0.8"
21# When updating Ash, also update vk.xml to the same Vulkan patch version that Ash uses.
22# All versions of vk.xml can be found at https://github.com/KhronosGroup/Vulkan-Headers/commits/main/registry/vk.xml.
23ash = "^0.37.2"
24bytemuck = "1.9"
25crossbeam-queue = "0.3"
26half = { version = "2", features = ["bytemuck"] }
27libloading = "0.7"
28once_cell = "1.17"
29parking_lot = { version = "0.12", features = ["send_guard"] }
30serde = { version = "1.0", optional = true }
31smallvec = "1.8"
32thread_local = "1.1"
33vulkano-macros = { path = "../vulkano-macros", version = "0.33.0", optional = true }
34
35[target.'cfg(target_os = "ios")'.dependencies]
36objc = "0.2.5"
37core-graphics-types = "0.1"
38
39[build-dependencies]
40ahash = "0.8"
41heck = "0.4"
42indexmap = "1.8"
43once_cell = "1.16"
44proc-macro2 = "1.0"
45quote = "1.0"
46regex = "1.0"
47serde = { version = "1.0", features = ["derive"] }
48serde_json = "1.0"
49vk-parse = "0.8"
50
51[dev-dependencies]
52cgmath = "0.18"
53nalgebra = "0.32"
54
55[features]
56default = ["macros"]
57macros = ["vulkano-macros"]
58document_unchecked = []
59