Skip to content

Commit 20f562f

Browse files
rcercIsaacWoods
authored andcommitted
aml: Do not require unstable features from rustc that are not used
`type_ascription` and `box_syntax` are not required to compile the crate (and `box_syntax` has been removed in any case).
1 parent e41036d commit 20f562f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

aml/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
//! combinator patterns to express the parse.
3636
3737
#![no_std]
38-
#![feature(decl_macro, type_ascription, box_syntax)]
38+
#![feature(decl_macro)]
3939

4040
extern crate alloc;
4141

0 commit comments

Comments
 (0)