diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a52933f..5bd8089 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 662c2a0..a63f5d9 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/snapbox-macros/Cargo.toml b/crates/snapbox-macros/Cargo.toml index e1b64e7..6776548 100644 --- a/crates/snapbox-macros/Cargo.toml +++ b/crates/snapbox-macros/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"] [features] default = [] diff --git a/crates/snapbox-macros/README.md b/crates/snapbox-macros/README.md index f8481bd..cdbcbb0 100644 --- a/crates/snapbox-macros/README.md +++ b/crates/snapbox-macros/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/snapbox-macros/src/lib.rs b/crates/snapbox-macros/src/lib.rs index cc8604f..1c56671 100644 --- a/crates/snapbox-macros/src/lib.rs +++ b/crates/snapbox-macros/src/lib.rs @@ -1,4 +1,4 @@ -#![cfg_attr(docsrs, feature(doc_auto_cfg))] +#![cfg_attr(docsrs, feature(doc_cfg))] #![warn(clippy::print_stderr)] #![warn(clippy::print_stdout)] diff --git a/crates/snapbox/CHANGELOG.md b/crates/snapbox/CHANGELOG.md index 7dca295..8871aa8 100644 --- a/crates/snapbox/CHANGELOG.md +++ b/crates/snapbox/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/snapbox/Cargo.toml b/crates/snapbox/Cargo.toml index 0887abb..52383c4 100644 --- a/crates/snapbox/Cargo.toml +++ b/crates/snapbox/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] pre-release-replacements = [ diff --git a/crates/snapbox/README.md b/crates/snapbox/README.md index bbfdd11..0c6c1e2 100644 --- a/crates/snapbox/README.md +++ b/crates/snapbox/README.md @@ -19,8 +19,8 @@ See the [docs](http://docs.rs/snapbox) for more. 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/snapbox/src/lib.rs b/crates/snapbox/src/lib.rs index 86f5146..19dd369 100644 --- a/crates/snapbox/src/lib.rs +++ b/crates/snapbox/src/lib.rs @@ -60,7 +60,7 @@ //! //! [trycmd]: https://docs.rs/trycmd -#![cfg_attr(docsrs, feature(doc_auto_cfg))] +#![cfg_attr(docsrs, feature(doc_cfg))] #![warn(clippy::print_stderr)] #![warn(clippy::print_stdout)] diff --git a/crates/trycmd/CHANGELOG.md b/crates/trycmd/CHANGELOG.md index ec7526c..0380221 100644 --- a/crates/trycmd/CHANGELOG.md +++ b/crates/trycmd/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/trycmd/Cargo.toml b/crates/trycmd/Cargo.toml index cfe5819..9805583 100644 --- a/crates/trycmd/Cargo.toml +++ b/crates/trycmd/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] pre-release-replacements = [ diff --git a/crates/trycmd/README.md b/crates/trycmd/README.md index 4cacebc..bd21371 100644 --- a/crates/trycmd/README.md +++ b/crates/trycmd/README.md @@ -39,8 +39,8 @@ See the [docs](http://docs.rs/trycmd) for more. 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/trycmd/src/lib.rs b/crates/trycmd/src/lib.rs index 6599cd7..7b5dbce 100644 --- a/crates/trycmd/src/lib.rs +++ b/crates/trycmd/src/lib.rs @@ -225,7 +225,7 @@ //! [assert_cmd]: https://crates.io/crates/assert_cmd //! [commandspec]: https://crates.io/crates/commandspec -#![cfg_attr(docsrs, feature(doc_auto_cfg))] +#![cfg_attr(docsrs, feature(doc_cfg))] #![warn(clippy::print_stderr)] #![warn(clippy::print_stdout)] diff --git a/crates/tryfn/CHANGELOG.md b/crates/tryfn/CHANGELOG.md index 5ae430a..d156554 100644 --- a/crates/tryfn/CHANGELOG.md +++ b/crates/tryfn/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/tryfn/Cargo.toml b/crates/tryfn/Cargo.toml index 40b91a9..59b8d73 100644 --- a/crates/tryfn/Cargo.toml +++ b/crates/tryfn/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] pre-release-replacements = [ diff --git a/crates/tryfn/README.md b/crates/tryfn/README.md index 863c9c8..b7f9492 100644 --- a/crates/tryfn/README.md +++ b/crates/tryfn/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/tryfn/src/lib.rs b/crates/tryfn/src/lib.rs index 2e6d228..8118015 100644 --- a/crates/tryfn/src/lib.rs +++ b/crates/tryfn/src/lib.rs @@ -39,7 +39,7 @@ //! } //! ``` -#![cfg_attr(docsrs, feature(doc_auto_cfg))] +#![cfg_attr(docsrs, feature(doc_cfg))] #![warn(clippy::print_stderr)] #![warn(clippy::print_stdout)] diff --git a/deny.toml b/deny.toml index 2982ba3..27bf59a 100644 --- a/deny.toml +++ b/deny.toml @@ -91,10 +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