various things I forgot

This commit is contained in:
2025-05-10 23:00:40 -04:00
parent e6e7e3e835
commit 4f196c0980
2 changed files with 3 additions and 2 deletions

View File

@@ -1,4 +1,4 @@
#![warn(clippy::all, clippy::pedantic)]
#![warn(clippy::all, clippy::pedantic, clippy::complexity, clippy::perf, clippy::style, clippy::restriction)]
pub mod ansi;
pub mod input;

View File

@@ -1,4 +1,5 @@
use std::io;
use std::io::{self, Stdin, Stdout};
use std::os::windows::io::RawHandle;
unsafe extern "system" {
fn GetStdHandle(std_handle: u32) -> usize;