aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Cargo.toml1
-rw-r--r--src/lib.rs2
2 files changed, 3 insertions, 0 deletions
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)]