Skip to content

Commit

Permalink
nit: suppress async_await nightly warning.
Browse files Browse the repository at this point in the history
  • Loading branch information
hdevalence committed Sep 27, 2019
1 parent e5cbd0f commit 119f881
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions zebrad/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@
//#![deny(warnings, missing_docs, trivial_casts, unused_qualifications)]
#![forbid(unsafe_code)]
// async_await is considered stable on nightly releases, but the corresponding
// release (1.39.0) is still in beta. Suppress the warning for now.
#![allow(stable_features)]
#![feature(async_await)]

#[macro_use]
Expand Down

0 comments on commit 119f881

Please sign in to comment.