Skip to content

Commit

Permalink
Allow compilation on earlier rust versions
Browse files Browse the repository at this point in the history
  • Loading branch information
rmja committed Oct 21, 2023
1 parent 8d42b3c commit 6d492dd
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
#![cfg_attr(not(test), no_std)]
#![allow(async_fn_in_trait)]
#![allow(unknown_lints, async_fn_in_trait)]
#![allow(stable_features)]
#![feature(async_fn_in_trait)]
#![doc = include_str!("../README.md")]
use core::{num::ParseIntError, str::Utf8Error};

Expand Down

0 comments on commit 6d492dd

Please sign in to comment.