From 91117f36b65897a2c01932bb7a5ad19113e9f06d Mon Sep 17 00:00:00 2001 From: Martin von Zweigbergk Date: Sun, 14 Mar 2021 22:04:38 -0700 Subject: [PATCH] cargo: work around warning in generated protobuf code with new nightly rustc --- lib/src/lib.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/src/lib.rs b/lib/src/lib.rs index b739e0d42..0ccc2861a 100644 --- a/lib/src/lib.rs +++ b/lib/src/lib.rs @@ -14,6 +14,8 @@ #![feature(get_mut_unchecked)] #![feature(map_first_last)] +// Work around https://github.com/stepancheg/rust-protobuf/issues/551 +#![allow(soft_unstable)] #[cfg(test)] #[macro_use]