소스 검색

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).
rcerc 2 년 전
부모
커밋
20f562f423
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      aml/src/lib.rs

+ 1 - 1
aml/src/lib.rs

@@ -35,7 +35,7 @@
 //! combinator patterns to express the parse.
 
 #![no_std]
-#![feature(decl_macro, type_ascription, box_syntax)]
+#![feature(decl_macro)]
 
 extern crate alloc;