diff options
author | Kirill Chibisov <contact@kchibisov.com> | 2022-01-16 09:34:22 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-16 09:34:22 +0300 |
commit | dfac57ef3fdd5ddc884ce7d7559137c5123bae3e (patch) | |
tree | 6ada3d48c665efbca6f897424e50f7ad1b682cb5 /utf8parse/src | |
parent | fe1022f6e6d6012652554e1964601d2827d7048f (diff) | |
download | r-alacritty-vte-dfac57ef3fdd5ddc884ce7d7559137c5123bae3e.tar.gz r-alacritty-vte-dfac57ef3fdd5ddc884ce7d7559137c5123bae3e.tar.bz2 r-alacritty-vte-dfac57ef3fdd5ddc884ce7d7559137c5123bae3e.zip |
Migrate to 2021 edition
Diffstat (limited to 'utf8parse/src')
-rw-r--r-- | utf8parse/src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
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] |