//! This crate parses the Vulkan XML registry into a Rust object.
//!
//! The entry point into this library is `parse_file_as_vkxml`, which will
//! return a `Registry` object. This object contains all the information contained
//! in the Vulkan API registry.
extern crate xml;
extern crate serde_derive;
extern crate serde;
extern crate vkxml;
pub use parse_file_as_vkxml;
pub use parse_stream_as_vkxml;
pub use parse_file;
pub use parse_stream;
pub use *;