Skip to content

Commit

Permalink
Merge pull request #48 from rmja/upgrade-toolchain
Browse files Browse the repository at this point in the history
Allow compilation on earlier rust versions
  • Loading branch information
rmja committed Oct 21, 2023
2 parents db9233a + 0b2e66b commit f68dbb9
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
#![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)]
#![feature(impl_trait_projections)]
#![doc = include_str!("../README.md")]
use core::{num::ParseIntError, str::Utf8Error};

Expand Down

0 comments on commit f68dbb9

Please sign in to comment.