Skip to content

Commit 27ef8e3

Browse files
authored
Merge pull request #304 from eclipse-biscuit/disable-mismatched-lifetime-syntaxes-warning
fix: disable newly introduced rustc warning in parser
2 parents d312a20 + b8e38f4 commit 27ef8e3

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

biscuit-parser/src/parser.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
* Copyright (c) 2019 Geoffroy Couprie <contact@geoffroycouprie.com> and Contributors to the Eclipse Foundation.
33
* SPDX-License-Identifier: Apache-2.0
44
*/
5+
6+
// This warning makes all parser signatures extremely verbose
7+
#![allow(mismatched_lifetime_syntaxes)]
58
use crate::builder::{self, CheckKind, PublicKey};
69
use nom::{
710
branch::alt,

0 commit comments

Comments
 (0)