Skip to content

Commit 9683308

Browse files
authored
Merge pull request #1382 from epage/template
chore: Update from _rust template
2 parents 0c17dab + 633f69a commit 9683308

File tree

22 files changed

+28
-20
lines changed

22 files changed

+28
-20
lines changed

.github/workflows/ci.yml

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

.github/workflows/rust-next.yml

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

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/codespell-dict/Cargo.toml

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

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

1818
[dependencies]
1919
dictgen = { version = "^0.4", path = "../dictgen" }

crates/codespell-dict/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/dictgen/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 = ["std"]

crates/dictgen/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/misspell-dict/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/typos-cli/Cargo.toml

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

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

1818
[package.metadata.release]
1919
tag-prefix = ""

crates/typos-cli/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
//! `typos_cli`'s API is unstable. Open an issue for starting a discussion on getting a subset
22
//! stabilized.
33
4-
#![cfg_attr(docsrs, feature(doc_auto_cfg))]
4+
#![cfg_attr(docsrs, feature(doc_cfg))]
55
#![warn(clippy::print_stderr)]
66
#![warn(clippy::print_stdout)]
77

0 commit comments

Comments
 (0)