33 lines
1007 B
TOML
33 lines
1007 B
TOML
[package]
|
|
name = "vulkano"
|
|
version = "0.25.0"
|
|
edition = "2018"
|
|
authors = ["Pierre Krieger <pierre.krieger1708@gmail.com>", "The vulkano contributors"]
|
|
repository = "https://github.com/vulkano-rs/vulkano"
|
|
description = "Safe wrapper for the Vulkan graphics API"
|
|
license = "MIT/Apache-2.0"
|
|
documentation = "https://docs.rs/vulkano"
|
|
homepage = "https://vulkano.rs"
|
|
keywords = ["vulkan", "bindings", "graphics", "gpu", "rendering"]
|
|
categories = ["rendering::graphics-api"]
|
|
readme = "../README.md"
|
|
build = "build.rs"
|
|
|
|
[dependencies]
|
|
# When updating Ash, also update vk.xml to the same Vulkan patch version that Ash uses.
|
|
# All versions of vk.xml can be found at https://github.com/KhronosGroup/Vulkan-Headers/commits/master/registry/vk.xml.
|
|
ash = "0.33.0"
|
|
crossbeam-queue = "0.3"
|
|
fnv = "1.0"
|
|
half = "1.7"
|
|
lazy_static = "1.4"
|
|
parking_lot = { version = "0.11.1", features = ["send_guard"] }
|
|
shared_library = "0.1"
|
|
smallvec = "1.6"
|
|
|
|
[build-dependencies]
|
|
heck = "0.3"
|
|
indexmap = "1.7"
|
|
regex = "1.5"
|
|
vk-parse = "0.6"
|