Bug 1908539 restrict MacOS platform audio processing to Nightly r=webrtc-reviewers...
[gecko.git] / third_party / rust / spirv / lib.rs
blob1631f4edef57373089331ec56cdeb6d3b87175ee
1 //! The SPIR-V header.
2 //!
3 //! This crate contains Rust definitions of all SPIR-V structs, enums,
4 //! and constants.
5 //!
6 //! The version of this crate is the version of SPIR-V it contains.
8 #![no_std]
9 #![allow(non_camel_case_types)]
10 #![cfg_attr(rustfmt, rustfmt_skip)]
12 use bitflags::bitflags;
14 include!("autogen_spirv.rs");