diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 16671f41..ac53c011 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -38,6 +38,9 @@ jobs: rust: ["stable"] continue-on-error: ${{ matrix.rust != 'stable' }} runs-on: ${{ matrix.os }} + env: + # Reduce amount of data cached + CARGO_PROFILE_DEV_DEBUG: line-tables-only steps: - name: Checkout repository uses: actions/checkout@v4 diff --git a/.github/workflows/rust-next.yml b/.github/workflows/rust-next.yml index 1bb1064d..4fec0d66 100644 --- a/.github/workflows/rust-next.yml +++ b/.github/workflows/rust-next.yml @@ -28,6 +28,9 @@ jobs: rust: "nightly" continue-on-error: ${{ matrix.rust != 'stable' }} runs-on: ${{ matrix.os }} + env: + # Reduce amount of data cached + CARGO_PROFILE_DEV_DEBUG: line-tables-only steps: - name: Checkout repository uses: actions/checkout@v4 diff --git a/crates/anstream/CHANGELOG.md b/crates/anstream/CHANGELOG.md index 5dd3c430..c554de41 100644 --- a/crates/anstream/CHANGELOG.md +++ b/crates/anstream/CHANGELOG.md @@ -1,8 +1,8 @@ # Change Log All notable changes to this project will be documented in this file. -The format is based on [Keep a Changelog](http://keepachangelog.com/) -and this project adheres to [Semantic Versioning](http://semver.org/). +The format is based on [Keep a Changelog](https://keepachangelog.com/) +and this project adheres to [Semantic Versioning](https://semver.org/). ## [Unreleased] - ReleaseDate diff --git a/crates/anstream/README.md b/crates/anstream/README.md index 7e751d65..508dc72b 100644 --- a/crates/anstream/README.md +++ b/crates/anstream/README.md @@ -18,8 +18,8 @@ overhead stripping of ANSI escape codes. Licensed under either of -* Apache License, Version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or ) -* MIT license ([LICENSE-MIT](LICENSE-MIT) or ) +* Apache License, Version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or ) +* MIT license ([LICENSE-MIT](LICENSE-MIT) or ) at your option. diff --git a/crates/anstream/src/lib.rs b/crates/anstream/src/lib.rs index 9233df7c..5ada312e 100644 --- a/crates/anstream/src/lib.rs +++ b/crates/anstream/src/lib.rs @@ -31,7 +31,7 @@ //! //! And this will correctly handle piping to a file, etc -#![cfg_attr(docsrs, feature(doc_auto_cfg))] +#![cfg_attr(docsrs, feature(doc_cfg))] #![warn(missing_docs)] #![warn(clippy::print_stderr)] #![warn(clippy::print_stdout)] diff --git a/crates/anstyle-ansi-term/CHANGELOG.md b/crates/anstyle-ansi-term/CHANGELOG.md index 89469a7f..b0a71b8f 100644 --- a/crates/anstyle-ansi-term/CHANGELOG.md +++ b/crates/anstyle-ansi-term/CHANGELOG.md @@ -1,8 +1,8 @@ # Change Log All notable changes to this project will be documented in this file. -The format is based on [Keep a Changelog](http://keepachangelog.com/) -and this project adheres to [Semantic Versioning](http://semver.org/). +The format is based on [Keep a Changelog](https://keepachangelog.com/) +and this project adheres to [Semantic Versioning](https://semver.org/). ## [Unreleased] - ReleaseDate diff --git a/crates/anstyle-ansi-term/README.md b/crates/anstyle-ansi-term/README.md index 1ffdf69a..7da5a309 100644 --- a/crates/anstyle-ansi-term/README.md +++ b/crates/anstyle-ansi-term/README.md @@ -10,8 +10,8 @@ Licensed under either of -* Apache License, Version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or ) -* MIT license ([LICENSE-MIT](LICENSE-MIT) or ) +* Apache License, Version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or ) +* MIT license ([LICENSE-MIT](LICENSE-MIT) or ) at your option. diff --git a/crates/anstyle-ansi-term/src/lib.rs b/crates/anstyle-ansi-term/src/lib.rs index ea3cfe68..872d504c 100644 --- a/crates/anstyle-ansi-term/src/lib.rs +++ b/crates/anstyle-ansi-term/src/lib.rs @@ -1,6 +1,6 @@ //! Convert between [`ansi_term`](https://lib.rs/ansi_term) and generic styling types -#![cfg_attr(docsrs, feature(doc_auto_cfg))] +#![cfg_attr(docsrs, feature(doc_cfg))] #![warn(missing_docs)] #![warn(clippy::print_stderr)] #![warn(clippy::print_stdout)] diff --git a/crates/anstyle-crossterm/CHANGELOG.md b/crates/anstyle-crossterm/CHANGELOG.md index 9c374165..6c3cc897 100644 --- a/crates/anstyle-crossterm/CHANGELOG.md +++ b/crates/anstyle-crossterm/CHANGELOG.md @@ -1,8 +1,8 @@ # Change Log All notable changes to this project will be documented in this file. -The format is based on [Keep a Changelog](http://keepachangelog.com/) -and this project adheres to [Semantic Versioning](http://semver.org/). +The format is based on [Keep a Changelog](https://keepachangelog.com/) +and this project adheres to [Semantic Versioning](https://semver.org/). ## [Unreleased] - ReleaseDate diff --git a/crates/anstyle-crossterm/README.md b/crates/anstyle-crossterm/README.md index 022ed788..5b6cb47e 100644 --- a/crates/anstyle-crossterm/README.md +++ b/crates/anstyle-crossterm/README.md @@ -10,8 +10,8 @@ Licensed under either of -* Apache License, Version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or ) -* MIT license ([LICENSE-MIT](LICENSE-MIT) or ) +* Apache License, Version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or ) +* MIT license ([LICENSE-MIT](LICENSE-MIT) or ) at your option. diff --git a/crates/anstyle-crossterm/src/lib.rs b/crates/anstyle-crossterm/src/lib.rs index 08bccbbe..7d5280bb 100644 --- a/crates/anstyle-crossterm/src/lib.rs +++ b/crates/anstyle-crossterm/src/lib.rs @@ -1,6 +1,6 @@ //! Convert between [`crossterm`](https://lib.rs/crossterm) and [generic styling types][anstyle] -#![cfg_attr(docsrs, feature(doc_auto_cfg))] +#![cfg_attr(docsrs, feature(doc_cfg))] #![warn(missing_docs)] #![warn(clippy::print_stderr)] #![warn(clippy::print_stdout)] diff --git a/crates/anstyle-git/CHANGELOG.md b/crates/anstyle-git/CHANGELOG.md index e172f722..3f7b33c5 100644 --- a/crates/anstyle-git/CHANGELOG.md +++ b/crates/anstyle-git/CHANGELOG.md @@ -1,8 +1,8 @@ # Change Log All notable changes to this project will be documented in this file. -The format is based on [Keep a Changelog](http://keepachangelog.com/) -and this project adheres to [Semantic Versioning](http://semver.org/). +The format is based on [Keep a Changelog](https://keepachangelog.com/) +and this project adheres to [Semantic Versioning](https://semver.org/). ## [Unreleased] - ReleaseDate diff --git a/crates/anstyle-git/README.md b/crates/anstyle-git/README.md index 6b11c19f..56785efa 100644 --- a/crates/anstyle-git/README.md +++ b/crates/anstyle-git/README.md @@ -10,8 +10,8 @@ Licensed under either of -* Apache License, Version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or ) -* MIT license ([LICENSE-MIT](LICENSE-MIT) or ) +* Apache License, Version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or ) +* MIT license ([LICENSE-MIT](LICENSE-MIT) or ) at your option. diff --git a/crates/anstyle-git/src/lib.rs b/crates/anstyle-git/src/lib.rs index e05b0027..a8aacae7 100644 --- a/crates/anstyle-git/src/lib.rs +++ b/crates/anstyle-git/src/lib.rs @@ -11,7 +11,7 @@ //! assert_eq!(hyperlink_style, anstyle::RgbColor(0x00, 0x00, 0xee).on_default() | anstyle::Effects::UNDERLINE); //! ``` -#![cfg_attr(docsrs, feature(doc_auto_cfg))] +#![cfg_attr(docsrs, feature(doc_cfg))] #![warn(missing_docs)] #![warn(clippy::print_stderr)] #![warn(clippy::print_stdout)] diff --git a/crates/anstyle-lossy/CHANGELOG.md b/crates/anstyle-lossy/CHANGELOG.md index e6b10766..ce99fdfc 100644 --- a/crates/anstyle-lossy/CHANGELOG.md +++ b/crates/anstyle-lossy/CHANGELOG.md @@ -1,8 +1,8 @@ # Change Log All notable changes to this project will be documented in this file. -The format is based on [Keep a Changelog](http://keepachangelog.com/) -and this project adheres to [Semantic Versioning](http://semver.org/). +The format is based on [Keep a Changelog](https://keepachangelog.com/) +and this project adheres to [Semantic Versioning](https://semver.org/). ## [Unreleased] - ReleaseDate diff --git a/crates/anstyle-lossy/README.md b/crates/anstyle-lossy/README.md index 10e29cf3..08f63a5e 100644 --- a/crates/anstyle-lossy/README.md +++ b/crates/anstyle-lossy/README.md @@ -10,8 +10,8 @@ Licensed under either of -* Apache License, Version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or ) -* MIT license ([LICENSE-MIT](LICENSE-MIT) or ) +* Apache License, Version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or ) +* MIT license ([LICENSE-MIT](LICENSE-MIT) or ) at your option. diff --git a/crates/anstyle-lossy/src/lib.rs b/crates/anstyle-lossy/src/lib.rs index a5b97ef4..545fc1db 100644 --- a/crates/anstyle-lossy/src/lib.rs +++ b/crates/anstyle-lossy/src/lib.rs @@ -1,6 +1,6 @@ //! Lossy conversion between ANSI Color Codes -#![cfg_attr(docsrs, feature(doc_auto_cfg))] +#![cfg_attr(docsrs, feature(doc_cfg))] #![warn(missing_docs)] #![warn(clippy::print_stderr)] #![warn(clippy::print_stdout)] diff --git a/crates/anstyle-ls/CHANGELOG.md b/crates/anstyle-ls/CHANGELOG.md index 8f6817e0..88ebf3bb 100644 --- a/crates/anstyle-ls/CHANGELOG.md +++ b/crates/anstyle-ls/CHANGELOG.md @@ -1,8 +1,8 @@ # Change Log All notable changes to this project will be documented in this file. -The format is based on [Keep a Changelog](http://keepachangelog.com/) -and this project adheres to [Semantic Versioning](http://semver.org/). +The format is based on [Keep a Changelog](https://keepachangelog.com/) +and this project adheres to [Semantic Versioning](https://semver.org/). ## [Unreleased] - ReleaseDate diff --git a/crates/anstyle-ls/README.md b/crates/anstyle-ls/README.md index ae0b825d..905fb94e 100644 --- a/crates/anstyle-ls/README.md +++ b/crates/anstyle-ls/README.md @@ -18,8 +18,8 @@ Information about the `LS_COLORS` environment variable is sparse. Here is a shor Licensed under either of -* Apache License, Version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or ) -* MIT license ([LICENSE-MIT](LICENSE-MIT) or ) +* Apache License, Version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or ) +* MIT license ([LICENSE-MIT](LICENSE-MIT) or ) at your option. diff --git a/crates/anstyle-ls/src/lib.rs b/crates/anstyle-ls/src/lib.rs index 59e2a784..1b6b4e08 100644 --- a/crates/anstyle-ls/src/lib.rs +++ b/crates/anstyle-ls/src/lib.rs @@ -8,7 +8,7 @@ //! assert_eq!(style, anstyle::AnsiColor::Blue.on_default() | anstyle::Effects::ITALIC); //! ``` -#![cfg_attr(docsrs, feature(doc_auto_cfg))] +#![cfg_attr(docsrs, feature(doc_cfg))] #![warn(missing_docs)] #![warn(clippy::print_stderr)] #![warn(clippy::print_stdout)] diff --git a/crates/anstyle-owo-colors/CHANGELOG.md b/crates/anstyle-owo-colors/CHANGELOG.md index cc89dec1..90c33ae6 100644 --- a/crates/anstyle-owo-colors/CHANGELOG.md +++ b/crates/anstyle-owo-colors/CHANGELOG.md @@ -1,8 +1,8 @@ # Change Log All notable changes to this project will be documented in this file. -The format is based on [Keep a Changelog](http://keepachangelog.com/) -and this project adheres to [Semantic Versioning](http://semver.org/). +The format is based on [Keep a Changelog](https://keepachangelog.com/) +and this project adheres to [Semantic Versioning](https://semver.org/). ## [Unreleased] - ReleaseDate diff --git a/crates/anstyle-owo-colors/README.md b/crates/anstyle-owo-colors/README.md index 7d2e044b..e054f6f4 100644 --- a/crates/anstyle-owo-colors/README.md +++ b/crates/anstyle-owo-colors/README.md @@ -10,8 +10,8 @@ Licensed under either of -* Apache License, Version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or ) -* MIT license ([LICENSE-MIT](LICENSE-MIT) or ) +* Apache License, Version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or ) +* MIT license ([LICENSE-MIT](LICENSE-MIT) or ) at your option. diff --git a/crates/anstyle-owo-colors/src/lib.rs b/crates/anstyle-owo-colors/src/lib.rs index 649427f5..33444a3c 100644 --- a/crates/anstyle-owo-colors/src/lib.rs +++ b/crates/anstyle-owo-colors/src/lib.rs @@ -1,6 +1,6 @@ //! Convert between [owo-colors](https://lib.rs/owo-colors) and generic styling types -#![cfg_attr(docsrs, feature(doc_auto_cfg))] +#![cfg_attr(docsrs, feature(doc_cfg))] #![warn(missing_docs)] #![warn(clippy::print_stderr)] #![warn(clippy::print_stdout)] diff --git a/crates/anstyle-parse/CHANGELOG.md b/crates/anstyle-parse/CHANGELOG.md index e6affb9c..a64b0a62 100644 --- a/crates/anstyle-parse/CHANGELOG.md +++ b/crates/anstyle-parse/CHANGELOG.md @@ -1,8 +1,8 @@ # Change Log All notable changes to this project will be documented in this file. -The format is based on [Keep a Changelog](http://keepachangelog.com/) -and this project adheres to [Semantic Versioning](http://semver.org/). +The format is based on [Keep a Changelog](https://keepachangelog.com/) +and this project adheres to [Semantic Versioning](https://semver.org/). ## [Unreleased] - ReleaseDate diff --git a/crates/anstyle-parse/README.md b/crates/anstyle-parse/README.md index 705b3e0c..88e95bcd 100644 --- a/crates/anstyle-parse/README.md +++ b/crates/anstyle-parse/README.md @@ -10,8 +10,8 @@ Licensed under either of -* Apache License, Version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or ) -* MIT license ([LICENSE-MIT](LICENSE-MIT) or ) +* Apache License, Version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or ) +* MIT license ([LICENSE-MIT](LICENSE-MIT) or ) at your option. diff --git a/crates/anstyle-parse/src/lib.rs b/crates/anstyle-parse/src/lib.rs index 28f50e42..6bbdc6bf 100644 --- a/crates/anstyle-parse/src/lib.rs +++ b/crates/anstyle-parse/src/lib.rs @@ -29,7 +29,7 @@ //! //! [Paul Williams' ANSI parser state machine]: https://vt100.net/emu/dec_ansi_parser #![cfg_attr(not(test), no_std)] -#![cfg_attr(docsrs, feature(doc_auto_cfg))] +#![cfg_attr(docsrs, feature(doc_cfg))] #![allow(missing_docs)] #![warn(clippy::print_stderr)] #![warn(clippy::print_stdout)] diff --git a/crates/anstyle-query/CHANGELOG.md b/crates/anstyle-query/CHANGELOG.md index df968ba7..736d55be 100644 --- a/crates/anstyle-query/CHANGELOG.md +++ b/crates/anstyle-query/CHANGELOG.md @@ -1,8 +1,8 @@ # Change Log All notable changes to this project will be documented in this file. -The format is based on [Keep a Changelog](http://keepachangelog.com/) -and this project adheres to [Semantic Versioning](http://semver.org/). +The format is based on [Keep a Changelog](https://keepachangelog.com/) +and this project adheres to [Semantic Versioning](https://semver.org/). ## [Unreleased] - ReleaseDate diff --git a/crates/anstyle-query/README.md b/crates/anstyle-query/README.md index cff93acb..cedce616 100644 --- a/crates/anstyle-query/README.md +++ b/crates/anstyle-query/README.md @@ -10,8 +10,8 @@ Licensed under either of -* Apache License, Version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or ) -* MIT license ([LICENSE-MIT](LICENSE-MIT) or ) +* Apache License, Version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or ) +* MIT license ([LICENSE-MIT](LICENSE-MIT) or ) at your option. diff --git a/crates/anstyle-query/src/lib.rs b/crates/anstyle-query/src/lib.rs index c6676fd4..f17570a1 100644 --- a/crates/anstyle-query/src/lib.rs +++ b/crates/anstyle-query/src/lib.rs @@ -1,6 +1,6 @@ //! Low level terminal capability lookups -#![cfg_attr(docsrs, feature(doc_auto_cfg))] +#![cfg_attr(docsrs, feature(doc_cfg))] #![warn(missing_docs)] #![warn(clippy::print_stderr)] #![warn(clippy::print_stdout)] diff --git a/crates/anstyle-roff/CHANGELOG.md b/crates/anstyle-roff/CHANGELOG.md index 2782dce4..00411ac0 100644 --- a/crates/anstyle-roff/CHANGELOG.md +++ b/crates/anstyle-roff/CHANGELOG.md @@ -1,8 +1,8 @@ # Change Log All notable changes to this project will be documented in this file. -The format is based on [Keep a Changelog](http://keepachangelog.com/) -and this project adheres to [Semantic Versioning](http://semver.org/). +The format is based on [Keep a Changelog](https://keepachangelog.com/) +and this project adheres to [Semantic Versioning](https://semver.org/). ## [Unreleased] - ReleaseDate diff --git a/crates/anstyle-roff/README.md b/crates/anstyle-roff/README.md index a3e5e1b2..56ba2acf 100644 --- a/crates/anstyle-roff/README.md +++ b/crates/anstyle-roff/README.md @@ -10,8 +10,8 @@ Licensed under either of -* Apache License, Version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or ) -* MIT license ([LICENSE-MIT](LICENSE-MIT) or ) +* Apache License, Version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or ) +* MIT license ([LICENSE-MIT](LICENSE-MIT) or ) at your option. diff --git a/crates/anstyle-roff/src/lib.rs b/crates/anstyle-roff/src/lib.rs index 84676ac1..10d0331f 100644 --- a/crates/anstyle-roff/src/lib.rs +++ b/crates/anstyle-roff/src/lib.rs @@ -2,7 +2,7 @@ //! Currently uses [roff](https://docs.rs/roff/0.2.1/roff/) as the engine for generating //! roff output. -#![cfg_attr(docsrs, feature(doc_auto_cfg))] +#![cfg_attr(docsrs, feature(doc_cfg))] #![warn(missing_docs)] #![warn(clippy::print_stderr)] #![warn(clippy::print_stdout)] diff --git a/crates/anstyle-svg/CHANGELOG.md b/crates/anstyle-svg/CHANGELOG.md index c2fa3fb0..8fa8a8aa 100644 --- a/crates/anstyle-svg/CHANGELOG.md +++ b/crates/anstyle-svg/CHANGELOG.md @@ -1,8 +1,8 @@ # Change Log All notable changes to this project will be documented in this file. -The format is based on [Keep a Changelog](http://keepachangelog.com/) -and this project adheres to [Semantic Versioning](http://semver.org/). +The format is based on [Keep a Changelog](https://keepachangelog.com/) +and this project adheres to [Semantic Versioning](https://semver.org/). ## [Unreleased] - ReleaseDate diff --git a/crates/anstyle-svg/README.md b/crates/anstyle-svg/README.md index 6fe91406..b22255de 100644 --- a/crates/anstyle-svg/README.md +++ b/crates/anstyle-svg/README.md @@ -10,8 +10,8 @@ Licensed under either of -* Apache License, Version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or ) -* MIT license ([LICENSE-MIT](LICENSE-MIT) or ) +* Apache License, Version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or ) +* MIT license ([LICENSE-MIT](LICENSE-MIT) or ) at your option. diff --git a/crates/anstyle-svg/src/lib.rs b/crates/anstyle-svg/src/lib.rs index 216fdbf7..0cb8491a 100644 --- a/crates/anstyle-svg/src/lib.rs +++ b/crates/anstyle-svg/src/lib.rs @@ -20,7 +20,7 @@ //! let html = Term::new().render_html(&vte); //! ``` -#![cfg_attr(docsrs, feature(doc_auto_cfg))] +#![cfg_attr(docsrs, feature(doc_cfg))] #![warn(missing_docs)] #![warn(clippy::print_stderr)] #![warn(clippy::print_stdout)] diff --git a/crates/anstyle-syntect/CHANGELOG.md b/crates/anstyle-syntect/CHANGELOG.md index 34f19ce0..caa20382 100644 --- a/crates/anstyle-syntect/CHANGELOG.md +++ b/crates/anstyle-syntect/CHANGELOG.md @@ -1,8 +1,8 @@ # Change Log All notable changes to this project will be documented in this file. -The format is based on [Keep a Changelog](http://keepachangelog.com/) -and this project adheres to [Semantic Versioning](http://semver.org/). +The format is based on [Keep a Changelog](https://keepachangelog.com/) +and this project adheres to [Semantic Versioning](https://semver.org/). ## [Unreleased] - ReleaseDate diff --git a/crates/anstyle-syntect/README.md b/crates/anstyle-syntect/README.md index c6340514..eabc80ba 100644 --- a/crates/anstyle-syntect/README.md +++ b/crates/anstyle-syntect/README.md @@ -10,8 +10,8 @@ Licensed under either of -* Apache License, Version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or ) -* MIT license ([LICENSE-MIT](LICENSE-MIT) or ) +* Apache License, Version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or ) +* MIT license ([LICENSE-MIT](LICENSE-MIT) or ) at your option. diff --git a/crates/anstyle-syntect/src/lib.rs b/crates/anstyle-syntect/src/lib.rs index 1d9def64..aa65ab06 100644 --- a/crates/anstyle-syntect/src/lib.rs +++ b/crates/anstyle-syntect/src/lib.rs @@ -1,7 +1,7 @@ //! Convert between [`syntect`](https://lib.rs/syntect) highlighting and //! [generic styling types][anstyle::Style] -#![cfg_attr(docsrs, feature(doc_auto_cfg))] +#![cfg_attr(docsrs, feature(doc_cfg))] #![warn(missing_docs)] #![warn(clippy::print_stderr)] #![warn(clippy::print_stdout)] diff --git a/crates/anstyle-termcolor/CHANGELOG.md b/crates/anstyle-termcolor/CHANGELOG.md index 13e26746..94e90a2f 100644 --- a/crates/anstyle-termcolor/CHANGELOG.md +++ b/crates/anstyle-termcolor/CHANGELOG.md @@ -1,8 +1,8 @@ # Change Log All notable changes to this project will be documented in this file. -The format is based on [Keep a Changelog](http://keepachangelog.com/) -and this project adheres to [Semantic Versioning](http://semver.org/). +The format is based on [Keep a Changelog](https://keepachangelog.com/) +and this project adheres to [Semantic Versioning](https://semver.org/). ## [Unreleased] - ReleaseDate diff --git a/crates/anstyle-termcolor/README.md b/crates/anstyle-termcolor/README.md index 27a0902c..95a42ffb 100644 --- a/crates/anstyle-termcolor/README.md +++ b/crates/anstyle-termcolor/README.md @@ -10,8 +10,8 @@ Licensed under either of -* Apache License, Version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or ) -* MIT license ([LICENSE-MIT](LICENSE-MIT) or ) +* Apache License, Version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or ) +* MIT license ([LICENSE-MIT](LICENSE-MIT) or ) at your option. diff --git a/crates/anstyle-termcolor/src/lib.rs b/crates/anstyle-termcolor/src/lib.rs index 04247e58..f53d8bfd 100644 --- a/crates/anstyle-termcolor/src/lib.rs +++ b/crates/anstyle-termcolor/src/lib.rs @@ -1,6 +1,6 @@ //! Convert between [termcolor](https://lib.rs/termcolor) and [generic styling types][anstyle] -#![cfg_attr(docsrs, feature(doc_auto_cfg))] +#![cfg_attr(docsrs, feature(doc_cfg))] #![warn(missing_docs)] #![warn(clippy::print_stderr)] #![warn(clippy::print_stdout)] diff --git a/crates/anstyle-wincon/CHANGELOG.md b/crates/anstyle-wincon/CHANGELOG.md index 7995e5a3..32b7f164 100644 --- a/crates/anstyle-wincon/CHANGELOG.md +++ b/crates/anstyle-wincon/CHANGELOG.md @@ -1,8 +1,8 @@ # Change Log All notable changes to this project will be documented in this file. -The format is based on [Keep a Changelog](http://keepachangelog.com/) -and this project adheres to [Semantic Versioning](http://semver.org/). +The format is based on [Keep a Changelog](https://keepachangelog.com/) +and this project adheres to [Semantic Versioning](https://semver.org/). ## [Unreleased] - ReleaseDate diff --git a/crates/anstyle-wincon/README.md b/crates/anstyle-wincon/README.md index 1d1e4731..cb791899 100644 --- a/crates/anstyle-wincon/README.md +++ b/crates/anstyle-wincon/README.md @@ -10,8 +10,8 @@ Licensed under either of -* Apache License, Version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or ) -* MIT license ([LICENSE-MIT](LICENSE-MIT) or ) +* Apache License, Version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or ) +* MIT license ([LICENSE-MIT](LICENSE-MIT) or ) at your option. diff --git a/crates/anstyle-wincon/src/lib.rs b/crates/anstyle-wincon/src/lib.rs index 833a9947..7be030d4 100644 --- a/crates/anstyle-wincon/src/lib.rs +++ b/crates/anstyle-wincon/src/lib.rs @@ -8,7 +8,7 @@ //! - Uses [`anstyle`](https://crates.io/crates/termcolor) rather than defining its own types //! - More focused, smaller -#![cfg_attr(docsrs, feature(doc_auto_cfg))] +#![cfg_attr(docsrs, feature(doc_cfg))] #![warn(missing_docs)] #![warn(clippy::print_stderr)] #![warn(clippy::print_stdout)] diff --git a/crates/anstyle-yansi/CHANGELOG.md b/crates/anstyle-yansi/CHANGELOG.md index 860e3a8e..35b719d3 100644 --- a/crates/anstyle-yansi/CHANGELOG.md +++ b/crates/anstyle-yansi/CHANGELOG.md @@ -1,8 +1,8 @@ # Change Log All notable changes to this project will be documented in this file. -The format is based on [Keep a Changelog](http://keepachangelog.com/) -and this project adheres to [Semantic Versioning](http://semver.org/). +The format is based on [Keep a Changelog](https://keepachangelog.com/) +and this project adheres to [Semantic Versioning](https://semver.org/). ## [Unreleased] - ReleaseDate diff --git a/crates/anstyle-yansi/README.md b/crates/anstyle-yansi/README.md index f507fc77..ce8f03e9 100644 --- a/crates/anstyle-yansi/README.md +++ b/crates/anstyle-yansi/README.md @@ -10,8 +10,8 @@ Licensed under either of -* Apache License, Version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or ) -* MIT license ([LICENSE-MIT](LICENSE-MIT) or ) +* Apache License, Version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or ) +* MIT license ([LICENSE-MIT](LICENSE-MIT) or ) at your option. diff --git a/crates/anstyle-yansi/src/lib.rs b/crates/anstyle-yansi/src/lib.rs index 86aa70fb..72b5745f 100644 --- a/crates/anstyle-yansi/src/lib.rs +++ b/crates/anstyle-yansi/src/lib.rs @@ -1,6 +1,6 @@ //! Convert between [yansi](https://lib.rs/yansi) and generic styling types -#![cfg_attr(docsrs, feature(doc_auto_cfg))] +#![cfg_attr(docsrs, feature(doc_cfg))] #![warn(missing_docs)] #![warn(clippy::print_stderr)] #![warn(clippy::print_stdout)] diff --git a/crates/anstyle/CHANGELOG.md b/crates/anstyle/CHANGELOG.md index 77e98f28..d36d4724 100644 --- a/crates/anstyle/CHANGELOG.md +++ b/crates/anstyle/CHANGELOG.md @@ -1,8 +1,8 @@ # Change Log All notable changes to this project will be documented in this file. -The format is based on [Keep a Changelog](http://keepachangelog.com/) -and this project adheres to [Semantic Versioning](http://semver.org/). +The format is based on [Keep a Changelog](https://keepachangelog.com/) +and this project adheres to [Semantic Versioning](https://semver.org/). ## [Unreleased] - ReleaseDate diff --git a/crates/anstyle/Cargo.toml b/crates/anstyle/Cargo.toml index 7e1d6982..0de2378d 100644 --- a/crates/anstyle/Cargo.toml +++ b/crates/anstyle/Cargo.toml @@ -12,7 +12,7 @@ include.workspace = true [package.metadata.docs.rs] all-features = true -rustdoc-args = ["--cfg", "docsrs", "--generate-link-to-definition"] +rustdoc-args = ["--generate-link-to-definition"] [package.metadata.release] tag-prefix = "" diff --git a/crates/anstyle/README.md b/crates/anstyle/README.md index 3025c188..99ea5e1a 100644 --- a/crates/anstyle/README.md +++ b/crates/anstyle/README.md @@ -26,8 +26,8 @@ General utilities: Licensed under either of -* Apache License, Version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or ) -* MIT license ([LICENSE-MIT](LICENSE-MIT) or ) +* Apache License, Version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or ) +* MIT license ([LICENSE-MIT](LICENSE-MIT) or ) at your option. diff --git a/crates/anstyle/src/lib.rs b/crates/anstyle/src/lib.rs index a8802224..f1449fc5 100644 --- a/crates/anstyle/src/lib.rs +++ b/crates/anstyle/src/lib.rs @@ -45,7 +45,7 @@ //! ``` #![cfg_attr(not(feature = "std"), no_std)] -#![cfg_attr(docsrs, feature(doc_auto_cfg))] +#![cfg_attr(docsrs, feature(doc_cfg))] #![warn(missing_docs)] #![warn(clippy::std_instead_of_core)] #![warn(clippy::std_instead_of_alloc)] diff --git a/crates/colorchoice-clap/CHANGELOG.md b/crates/colorchoice-clap/CHANGELOG.md index 9a622125..cc8f0b15 100644 --- a/crates/colorchoice-clap/CHANGELOG.md +++ b/crates/colorchoice-clap/CHANGELOG.md @@ -1,8 +1,8 @@ # Change Log All notable changes to this project will be documented in this file. -The format is based on [Keep a Changelog](http://keepachangelog.com/) -and this project adheres to [Semantic Versioning](http://semver.org/). +The format is based on [Keep a Changelog](https://keepachangelog.com/) +and this project adheres to [Semantic Versioning](https://semver.org/). ## [Unreleased] - ReleaseDate diff --git a/crates/colorchoice-clap/README.md b/crates/colorchoice-clap/README.md index 158193ff..680ff7bf 100644 --- a/crates/colorchoice-clap/README.md +++ b/crates/colorchoice-clap/README.md @@ -10,8 +10,8 @@ Licensed under either of -* Apache License, Version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or ) -* MIT license ([LICENSE-MIT](LICENSE-MIT) or ) +* Apache License, Version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or ) +* MIT license ([LICENSE-MIT](LICENSE-MIT) or ) at your option. diff --git a/crates/colorchoice-clap/src/lib.rs b/crates/colorchoice-clap/src/lib.rs index 8ba9ffa7..1ced7000 100644 --- a/crates/colorchoice-clap/src/lib.rs +++ b/crates/colorchoice-clap/src/lib.rs @@ -23,7 +23,7 @@ //! anstream::println!("Hello, {}!", "world".red()); //! ``` -#![cfg_attr(docsrs, feature(doc_auto_cfg))] +#![cfg_attr(docsrs, feature(doc_cfg))] #![warn(missing_docs)] #![warn(clippy::print_stderr)] #![warn(clippy::print_stdout)] diff --git a/crates/colorchoice/CHANGELOG.md b/crates/colorchoice/CHANGELOG.md index d7124671..b702ce56 100644 --- a/crates/colorchoice/CHANGELOG.md +++ b/crates/colorchoice/CHANGELOG.md @@ -1,8 +1,8 @@ # Change Log All notable changes to this project will be documented in this file. -The format is based on [Keep a Changelog](http://keepachangelog.com/) -and this project adheres to [Semantic Versioning](http://semver.org/). +The format is based on [Keep a Changelog](https://keepachangelog.com/) +and this project adheres to [Semantic Versioning](https://semver.org/). ## [Unreleased] - ReleaseDate diff --git a/crates/colorchoice/README.md b/crates/colorchoice/README.md index 15300f1d..12340e00 100644 --- a/crates/colorchoice/README.md +++ b/crates/colorchoice/README.md @@ -10,8 +10,8 @@ Licensed under either of -* Apache License, Version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or ) -* MIT license ([LICENSE-MIT](LICENSE-MIT) or ) +* Apache License, Version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or ) +* MIT license ([LICENSE-MIT](LICENSE-MIT) or ) at your option. diff --git a/crates/colorchoice/src/lib.rs b/crates/colorchoice/src/lib.rs index bfe56728..798ee86e 100644 --- a/crates/colorchoice/src/lib.rs +++ b/crates/colorchoice/src/lib.rs @@ -1,7 +1,7 @@ //! Global override of color control #![cfg_attr(not(test), no_std)] -#![cfg_attr(docsrs, feature(doc_auto_cfg))] +#![cfg_attr(docsrs, feature(doc_cfg))] #![warn(missing_docs)] #![warn(clippy::print_stderr)] #![warn(clippy::print_stdout)] diff --git a/deny.toml b/deny.toml index ee5ae89b..27bf59a8 100644 --- a/deny.toml +++ b/deny.toml @@ -91,9 +91,12 @@ allow = [ "BSD-3-Clause", "MPL-2.0", "Unicode-DFS-2016", + "Unicode-3.0", "CC0-1.0", "ISC", "OpenSSL", + "Zlib", + "NCSA", ] # The confidence threshold for detecting a license from license text. # The higher the value, the more closely the license text must be to the