From b042d63314b891ab5244b4e93cf2e9b1a88fba14 Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Mon, 4 Nov 2019 09:22:39 -0500 Subject: clippy --- Cargo.toml | 1 + src/lib.rs | 2 ++ 2 files changed, 3 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index d68299b..fa4317c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,6 +9,7 @@ homepage = "https://github.com/doy/vt100-rust" repository = "https://github.com/doy/vt100-rust" readme = "README.md" keywords = ["terminal", "vt100"] +categories = ["command-line-interface", "encoding"] license = "MIT" [dependencies] diff --git a/src/lib.rs b/src/lib.rs index 3054403..346a54a 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -16,6 +16,8 @@ //! screen.process(b"this text is \x1b[31mRED\x1b[m"); //! ``` +// XXX this is broken with ale +// #![warn(clippy::cargo)] #![warn(clippy::pedantic)] #![warn(clippy::nursery)] #![allow(clippy::missing_const_for_fn)] -- cgit v1.2.3-54-g00ecf