vk-parse 0.13.0

Vulkan specification parser
Documentation
[package]
name = "vk-parse"
version = "0.13.0"
authors = ["Martin Krošlák <kroslakma@gmail.com>"]
description = "Vulkan specification parser"
readme = "README.md"
license = "Apache-2.0/MIT"
documentation = "https://docs.rs/vk-parse"
repository = "https://github.com/krolli/vk-parse"
keywords = ["vulkan", "parser"]
categories = ["parser-implementations", "rendering::graphics-api"]

[features]
serialize = ["serde", "serde_derive"]
vkxml-convert = ["vkxml"]

[dependencies]
xml-rs = "^0.8"

vkxml = { optional = true, version = "^0.3" }
serde = { optional = true, version = "^1.0.77" }
serde_derive = { optional = true, version = "^1.0.77" }

[badges]