diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index dced090..9ffddff 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,11 +19,11 @@ jobs: toolchain: ${{ matrix.rust }} components: rustfmt, clippy + - run: cargo fmt --check --all + - run: cargo clippy -- -D warnings - run: cargo build --all-features - run: cargo test - run: cargo test --all-features - - run: cargo fmt --check --all - - run: cargo clippy -- -D warnings - run: cargo run --example 256_colors - run: cargo run --example hyperlink - run: cargo run --example title diff --git a/Cargo.toml b/Cargo.toml index ecf0cd3..58e747c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,7 +10,7 @@ edition = "2021" rust-version = "1.62.1" license = "MIT" name = "nu-ansi-term" -version = "0.49.0" +version = "0.50.0" repository = "https://github.com/nushell/nu-ansi-term" [lib] diff --git a/src/lib.rs b/src/lib.rs index 504bf21..734d122 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -252,6 +252,7 @@ pub use display::*; mod write; mod windows; +#[allow(unused_imports)] pub use crate::windows::*; mod util;