Skip to content

Commit f378809

Browse files
authored
Merge pull request #1262 from epage/template
chore: Update from _rust template
2 parents 6384874 + 22f166b commit f378809

File tree

19 files changed

+35
-32
lines changed

19 files changed

+35
-32
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

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.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ exclude = [
125125

126126
[package.metadata.docs.rs]
127127
all-features = true
128-
rustdoc-args = ["--cfg", "docsrs", "--generate-link-to-definition"]
128+
rustdoc-args = ["--generate-link-to-definition"]
129129

130130
[package.metadata.release]
131131
pre-release-replacements = [

crates/config/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,17 @@ name = "cobalt-config"
33
version = "0.19.8"
44
description = "Static site generator written in Rust"
55
readme = "../../README.md"
6-
keywords = ["static", "site", "generator"]
76
categories = ["command-line-utilities"]
8-
license.workspace = true
7+
keywords = ["static", "site", "generator"]
98
repository.workspace = true
9+
license.workspace = true
1010
edition.workspace = true
1111
rust-version.workspace = true
1212
include.workspace = true
1313

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

1818
[features]
1919
unstable = []

crates/config/LICENSE-MIT

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2015 The assert_cli Developers
1+
Copyright (c) Individual contributors
22

33
Permission is hereby granted, free of charge, to any person obtaining a copy
44
of this software and associated documentation files (the "Software"), to deal

crates/config/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
#![allow(clippy::self_named_module_files)] // false positive

crates/core/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,17 @@ name = "cobalt-core"
33
version = "0.19.8"
44
description = "Static site generator written in Rust"
55
readme = "../../README.md"
6-
keywords = ["static", "site", "generator"]
76
categories = ["command-line-utilities"]
8-
license.workspace = true
7+
keywords = ["static", "site", "generator"]
98
repository.workspace = true
9+
license.workspace = true
1010
edition.workspace = true
1111
rust-version.workspace = true
1212
include.workspace = true
1313

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

1818
[features]
1919
unstable = []

crates/core/LICENSE-MIT

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2015 The assert_cli Developers
1+
Copyright (c) Individual contributors
22

33
Permission is hereby granted, free of charge, to any person obtaining a copy
44
of this software and associated documentation files (the "Software"), to deal

0 commit comments

Comments
 (0)