Skip to content

Commit 91404e2

Browse files
authored
Merge pull request #64 from epage/template
chore: Update from _rust template
2 parents 4ef9876 + 0b2bcd0 commit 91404e2

7 files changed

Lines changed: 15 additions & 6 deletions

File tree

.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

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

Cargo.toml

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

113113
[package.metadata.docs.rs]
114114
all-features = true
115-
rustdoc-args = ["--cfg", "docsrs", "--generate-link-to-definition"]
115+
rustdoc-args = ["--generate-link-to-definition"]
116116

117117
[package.metadata.release]
118118
pre-release-replacements = [

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ This is done by:
2929

3030
Licensed under either of
3131

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

3535
at your option.
3636

deny.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,9 +91,12 @@ allow = [
9191
"BSD-3-Clause",
9292
"MPL-2.0",
9393
"Unicode-DFS-2016",
94+
"Unicode-3.0",
9495
"CC0-1.0",
9596
"ISC",
9697
"OpenSSL",
98+
"Zlib",
99+
"NCSA",
97100
]
98101
# The confidence threshold for detecting a license from license text.
99102
# The higher the value, the more closely the license text must be to the

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
//! - output: [`wordlist_codegen.rs`](https://github.com/crate-ci/imperative/blob/master/src/wordlist_codegen.rs)
1818
//! - generator: [`imperative-codegen`](https://github.com/crate-ci/imperative/tree/master/tests/codegen.rs)
1919
20-
#![cfg_attr(docsrs, feature(doc_auto_cfg))]
20+
#![cfg_attr(docsrs, feature(doc_cfg))]
2121
#![warn(clippy::print_stderr)]
2222
#![warn(clippy::print_stdout)]
2323

0 commit comments

Comments
 (0)