Skip to content

Commit c7211d4

Browse files
authored
Merge pull request #2332 from mulkieran/develop-2.2.1-rust-1.48
Increase recommended development toolchain to 1.48.0
2 parents 2cacca0 + 383f0e7 commit c7211d4

File tree

4 files changed

+6
-3
lines changed

4 files changed

+6
-3
lines changed

.github/workflows/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@ jobs:
2222
include:
2323
# MANDATORY CHECKS USING CURRENT DEVELOPMENT COMPILER
2424
- task: make -f Makefile fmt-travis
25-
toolchain: 1.47.0
25+
toolchain: 1.48.0
2626
components: rustfmt
2727
- task: make -f Makefile clippy
28-
toolchain: 1.47.0
28+
toolchain: 1.48.0
2929
components: clippy
3030
# MANDATORY TESTING ON STABLE
3131
- task: make -f Makefile build

Makefile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ DENY = -D warnings -D future-incompatible -D unused ${RUST_2018_IDIOMS}
1010

1111
# Clippy deny variable, including allows for troublesome lints.
1212
# Notable allows:
13+
# map_err_ignore: we generally drop the errors for a reason
1314
# option_if_let_else: causing problems with if-else chains
1415
# similar_names: judges "yes" and "res" to be too similar
1516
CLIPPY_DENY = -D clippy::pedantic \
@@ -23,6 +24,7 @@ CLIPPY_DENY = -D clippy::pedantic \
2324
-A clippy::find_map \
2425
-A clippy::if_not_else \
2526
-A clippy::items_after_statements \
27+
-A clippy::map_err_ignore \
2628
-A clippy::map_unwrap_or \
2729
-A clippy::match_same_arms \
2830
-A clippy::match_wildcard_for_single_variants \

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ mailing list, if preferred.
4747
### Setting up for development
4848

4949
#### Development Compiler
50-
The version of the compiler recommended for development is 1.47. Other
50+
The version of the compiler recommended for development is 1.48. Other
5151
versions of the compiler may disagree with the CI tasks on some points,
5252
so should be avoided.
5353

src/engine/types/mod.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,7 @@ pub enum Redundancy {
8787
}
8888

8989
#[derive(Debug, PartialEq, Eq, Hash, Clone)]
90+
#[allow(clippy::rc_buffer)]
9091
pub struct Name(Rc<String>);
9192

9293
impl Name {

0 commit comments

Comments
 (0)