File tree Expand file tree Collapse file tree 7 files changed +14
-6
lines changed Expand file tree Collapse file tree 7 files changed +14
-6
lines changed Original file line number Diff line number Diff line change 38
38
rust : ["stable"]
39
39
continue-on-error : ${{ matrix.rust != 'stable' }}
40
40
runs-on : ${{ matrix.os }}
41
+ env :
42
+ # Reduce amount of data cached
43
+ CARGO_PROFILE_DEV_DEBUG : line-tables-only
41
44
steps :
42
45
- name : Checkout repository
43
46
uses : actions/checkout@v4
Original file line number Diff line number Diff line change 28
28
rust : " nightly"
29
29
continue-on-error : ${{ matrix.rust != 'stable' }}
30
30
runs-on : ${{ matrix.os }}
31
+ env :
32
+ # Reduce amount of data cached
33
+ CARGO_PROFILE_DEV_DEBUG : line-tables-only
31
34
steps :
32
35
- name : Checkout repository
33
36
uses : actions/checkout@v4
Original file line number Diff line number Diff line change 1
1
# Change Log
2
2
All notable changes to this project will be documented in this file.
3
3
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/) .
6
6
7
7
<!-- next-header -->
8
8
## [ Unreleased] - ReleaseDate
Original file line number Diff line number Diff line change @@ -112,7 +112,7 @@ include.workspace = true
112
112
113
113
[package .metadata .docs .rs ]
114
114
all-features = true
115
- rustdoc-args = [" --cfg " , " docsrs " , " -- generate-link-to-definition" ]
115
+ rustdoc-args = [" --generate-link-to-definition" ]
116
116
117
117
[package .metadata .release ]
118
118
pre-release-replacements = [
Original file line number Diff line number Diff line change @@ -65,8 +65,8 @@ Some crates that fill a similar role include:
65
65
66
66
Licensed under either of
67
67
68
- * Apache License, Version 2.0, ([ LICENSE-APACHE] ( LICENSE-APACHE ) or < http ://www.apache.org/licenses/LICENSE-2.0> )
69
- * MIT license ([ LICENSE-MIT] ( LICENSE-MIT ) or < http ://opensource.org/licenses/MIT > )
68
+ * Apache License, Version 2.0, ([ LICENSE-APACHE] ( LICENSE-APACHE ) or < https ://www.apache.org/licenses/LICENSE-2.0> )
69
+ * MIT license ([ LICENSE-MIT] ( LICENSE-MIT ) or < https ://opensource.org/license/mit > )
70
70
71
71
at your option.
72
72
Original file line number Diff line number Diff line change @@ -91,10 +91,12 @@ allow = [
91
91
" BSD-3-Clause" ,
92
92
" MPL-2.0" ,
93
93
" Unicode-DFS-2016" ,
94
+ " Unicode-3.0" ,
94
95
" CC0-1.0" ,
95
96
" ISC" ,
96
97
" OpenSSL" ,
97
98
" Zlib" ,
99
+ " NCSA" ,
98
100
]
99
101
# The confidence threshold for detecting a license from license text.
100
102
# The higher the value, the more closely the license text must be to the
Original file line number Diff line number Diff line change 80
80
//! [exitcode]: https://crates.io/crates/exitcode
81
81
//! [exitfailure]: https://crates.io/crates/exitfailure
82
82
83
- #![ cfg_attr( docsrs, feature( doc_auto_cfg ) ) ]
83
+ #![ cfg_attr( docsrs, feature( doc_cfg ) ) ]
84
84
#![ warn( clippy:: print_stderr) ]
85
85
#![ warn( clippy:: print_stdout) ]
86
86
You can’t perform that action at this time.
0 commit comments