build: fix nightly flag
This commit is contained in:
parent
3e144bbdff
commit
70aa4091e0
|
@ -9,7 +9,7 @@ use nom::combinator::{eof, map_res, value};
|
|||
use nom::error::{ErrorKind, ParseError};
|
||||
|
||||
use nom::sequence::delimited;
|
||||
use nom::{bytes::complete::tag, character::complete::multispace0, IResult, InputIter, InputLength, InputTake, Parser, Slice, AsChar};
|
||||
use nom::{bytes::complete::tag, character::complete::multispace0, IResult, InputIter, InputLength, InputTake, Slice, AsChar};
|
||||
|
||||
#[derive(Debug)]
|
||||
pub struct Token<'a> {
|
||||
|
|
|
@ -46,6 +46,7 @@
|
|||
//! In the meanwhile, the only supported compilation type is [GlslangCompilation](crate::front::GlslangCompilation),
|
||||
//! which does transpilation via [shaderc](https://github.com/google/shaderc) and [SPIRV-Cross](https://github.com/KhronosGroup/SPIRV-Cross).
|
||||
#![feature(type_alias_impl_trait)]
|
||||
#![feature(impl_trait_in_assoc_type)]
|
||||
#![feature(let_chains)]
|
||||
|
||||
/// Shader codegen backends.
|
||||
|
|
|
@ -6,7 +6,6 @@
|
|||
#![feature(strict_provenance)]
|
||||
#![feature(type_alias_impl_trait)]
|
||||
#![feature(let_chains)]
|
||||
#![feature(is_some_and)]
|
||||
|
||||
mod binding;
|
||||
mod filter_chain;
|
||||
|
|
Loading…
Reference in a new issue