Skip to content

Commit

Permalink
Upgrade to Rust 1.70.0. (#65)
Browse files Browse the repository at this point in the history
The release announcement is here:
  https://blog.rust-lang.org/2023/06/01/Rust-1.70.0.html

Since the sparse index protocol is now default, kill the explicit
configuration of that.

Closes #64
  • Loading branch information
jsirois committed Jun 5, 2023
1 parent c6f550f commit 941bc5b
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 7 deletions.
3 changes: 0 additions & 3 deletions .cargo/config.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
[registries.crates-io]
protocol = "sparse"

[target.aarch64-pc-windows-msvc]
rustflags = [
# For Windows static msvcrt linking with no need for dll re-distribution.
Expand Down
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
docker run --rm \
-v $PWD:/code \
-w /code \
rust:1.69.0-alpine3.17 \
rust:1.70.0-alpine3.18 \
sh -c 'apk add cmake make musl-dev perl && cargo run -p package -- dist'
- persist_to_workspace:
root: dist
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,5 +46,5 @@ jobs:
docker run --rm \
-v $PWD:/code \
-w /code \
rust:1.69.0-alpine3.17 \
rust:1.70.0-alpine3.18 \
sh -c 'apk add cmake make musl-dev perl && cargo run -p package -- dist'
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ jobs:
docker run --rm \
-v $PWD:/code \
-w /code \
rust:1.69.0-alpine3.17 \
rust:1.70.0-alpine3.18 \
sh -c 'apk add cmake make musl-dev perl && cargo run -p package -- dist'
- name: Prepare Changelog
id: prepare-changelog
Expand Down
2 changes: 1 addition & 1 deletion rust-toolchain
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[toolchain]
# N.B.: Update .github and .circleci yaml to use a matching image.
channel = "1.69.0"
channel = "1.70.0"
components = [
"cargo",
"clippy",
Expand Down

0 comments on commit 941bc5b

Please sign in to comment.