Skip to content

Commit 1b507da

Browse files
authored
Merge pull request #401 from epage/template
chore: Update from _rust template
2 parents 91330bf + ee4ef5e commit 1b507da

File tree

18 files changed

+30
-22
lines changed

18 files changed

+30
-22
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,9 @@ jobs:
3838
rust: ["stable"]
3939
continue-on-error: ${{ matrix.rust != 'stable' }}
4040
runs-on: ${{ matrix.os }}
41+
env:
42+
# Reduce amount of data cached
43+
CARGO_PROFILE_DEV_DEBUG: line-tables-only
4144
steps:
4245
- name: Checkout repository
4346
uses: actions/checkout@v4

.github/workflows/rust-next.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,9 @@ jobs:
2828
rust: "nightly"
2929
continue-on-error: ${{ matrix.rust != 'stable' }}
3030
runs-on: ${{ matrix.os }}
31+
env:
32+
# Reduce amount of data cached
33+
CARGO_PROFILE_DEV_DEBUG: line-tables-only
3134
steps:
3235
- name: Checkout repository
3336
uses: actions/checkout@v4

crates/snapbox-macros/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ include.workspace = true
1212

1313
[package.metadata.docs.rs]
1414
all-features = true
15-
rustdoc-args = ["--cfg", "docsrs", "--generate-link-to-definition"]
15+
rustdoc-args = ["--generate-link-to-definition"]
1616

1717
[features]
1818
default = []

crates/snapbox-macros/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010

1111
Licensed under either of
1212

13-
* Apache License, Version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or <http://www.apache.org/licenses/LICENSE-2.0>)
14-
* MIT license ([LICENSE-MIT](LICENSE-MIT) or <http://opensource.org/licenses/MIT>)
13+
* Apache License, Version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or <https://www.apache.org/licenses/LICENSE-2.0>)
14+
* MIT license ([LICENSE-MIT](LICENSE-MIT) or <https://opensource.org/license/mit>)
1515

1616
at your option.
1717

crates/snapbox-macros/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#![cfg_attr(docsrs, feature(doc_auto_cfg))]
1+
#![cfg_attr(docsrs, feature(doc_cfg))]
22
#![warn(clippy::print_stderr)]
33
#![warn(clippy::print_stdout)]
44

crates/snapbox/CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# Change Log
22
All notable changes to this project will be documented in this file.
33

4-
The format is based on [Keep a Changelog](http://keepachangelog.com/)
5-
and this project adheres to [Semantic Versioning](http://semver.org/).
4+
The format is based on [Keep a Changelog](https://keepachangelog.com/)
5+
and this project adheres to [Semantic Versioning](https://semver.org/).
66

77
<!-- next-header -->
88
## [Unreleased] - ReleaseDate

crates/snapbox/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ include.workspace = true
1212

1313
[package.metadata.docs.rs]
1414
all-features = true
15-
rustdoc-args = ["--cfg", "docsrs", "--generate-link-to-definition"]
15+
rustdoc-args = ["--generate-link-to-definition"]
1616

1717
[package.metadata.release]
1818
pre-release-replacements = [

crates/snapbox/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ See the [docs](http://docs.rs/snapbox) for more.
1919

2020
Licensed under either of
2121

22-
* Apache License, Version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or <http://www.apache.org/licenses/LICENSE-2.0>)
23-
* MIT license ([LICENSE-MIT](LICENSE-MIT) or <http://opensource.org/licenses/MIT>)
22+
* Apache License, Version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or <https://www.apache.org/licenses/LICENSE-2.0>)
23+
* MIT license ([LICENSE-MIT](LICENSE-MIT) or <https://opensource.org/license/mit>)
2424

2525
at your option.
2626

crates/snapbox/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
//!
6161
//! [trycmd]: https://docs.rs/trycmd
6262
63-
#![cfg_attr(docsrs, feature(doc_auto_cfg))]
63+
#![cfg_attr(docsrs, feature(doc_cfg))]
6464
#![warn(clippy::print_stderr)]
6565
#![warn(clippy::print_stdout)]
6666

crates/trycmd/CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# Change Log
22
All notable changes to this project will be documented in this file.
33

4-
The format is based on [Keep a Changelog](http://keepachangelog.com/)
5-
and this project adheres to [Semantic Versioning](http://semver.org/).
4+
The format is based on [Keep a Changelog](https://keepachangelog.com/)
5+
and this project adheres to [Semantic Versioning](https://semver.org/).
66

77
<!-- next-header -->
88
## [Unreleased] - ReleaseDate

0 commit comments

Comments
 (0)