Skip to content

Commit

Permalink
Merge pull request #207 from JohnTitor/fix-ci
Browse files Browse the repository at this point in the history
Bump MSRV to 1.40.0
  • Loading branch information
JohnTitor committed Jun 6, 2021
2 parents 73a6799 + 0f1407e commit 5b42ba6
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions .circleci/config.yml
Expand Up @@ -5,7 +5,7 @@ save_registry: &SAVE_REGISTRY
save_cache:
key: registry-{{ .BuildNum }}
paths:
- /usr/local/cargo/registry/index
- /usr/local/cargo/registry/index
deps_key: &DEPS_KEY
key: deps-{{ checksum "~/rust-version" }}-{{ checksum "Cargo.lock" }}
restore_deps: &RESTORE_DEPS
Expand All @@ -15,14 +15,14 @@ save_deps: &SAVE_DEPS
save_cache:
<<: *DEPS_KEY
paths:
- target
- /usr/local/cargo/registry/cache
- target
- /usr/local/cargo/registry/cache

version: 2
jobs:
stable:
docker:
- image: rust:1.36.0-slim
- image: rust:1.40.0-slim
environment:
RUSTFLAGS: -D warnings
steps:
Expand Down
Expand Up @@ -4,4 +4,4 @@ error: unsupported key expression
5 | UniCase("FOO") => 42, //~ NOTE one occurrence here
| ^^^^^^^^^^^^^^
|
= note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
= note: this error originates in the macro `proc_macro_call` (in Nightly builds, run with -Z macro-backtrace for more info)
2 changes: 1 addition & 1 deletion phf_macros/tests/compile-fail/bad-syntax.stderr
Expand Up @@ -4,4 +4,4 @@ error: expected identifier
5 | => //~ ERROR expected identifier
| ^^
|
= note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
= note: this error originates in the macro `proc_macro_call` (in Nightly builds, run with -Z macro-backtrace for more info)

0 comments on commit 5b42ba6

Please sign in to comment.