From dfac57ef3fdd5ddc884ce7d7559137c5123bae3e Mon Sep 17 00:00:00 2001 From: Kirill Chibisov Date: Sun, 16 Jan 2022 09:34:22 +0300 Subject: Migrate to 2021 edition --- utf8parse/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'utf8parse/src') diff --git a/utf8parse/src/lib.rs b/utf8parse/src/lib.rs index 6168e2e..947a0aa 100644 --- a/utf8parse/src/lib.rs +++ b/utf8parse/src/lib.rs @@ -3,7 +3,7 @@ //! This module implements a table-driven UTF-8 parser which should //! theoretically contain the minimal number of branches (1). The only branch is //! on the `Action` returned from unpacking a transition. -#![deny(clippy::all, clippy::if_not_else, clippy::enum_glob_use, clippy::wrong_pub_self_convention)] +#![deny(clippy::all, clippy::if_not_else, clippy::enum_glob_use)] #![cfg_attr(all(feature = "nightly", test), feature(test))] #![no_std] -- cgit