Skip to content

Commit bc88fd0

Browse files
authored
Enable sparse registry access after stabilization
rust-lang/cargo#11224 dtolnay/rust-toolchain#54
1 parent 685abf8 commit bc88fd0

File tree

2 files changed

+11
-0
lines changed

2 files changed

+11
-0
lines changed

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [1.3.5] - 2023-01-21
11+
12+
### Changed
13+
14+
* Use the newly stabilized setting to enable sparse registry access.
15+
This speeds up access to the crate registry and is in addition to the unstable nightly env var.
16+
<https://github.com/rust-lang/cargo/pull/11224>
17+
1018
## [1.3.4] - 2022-10-15
1119

1220
### Changed

action.yml

+3
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,9 @@ runs:
6565
# Enable faster sparse index on nightly
6666
# https://internals.rust-lang.org/t/call-for-testing-cargo-sparse-registry/16862
6767
echo "CARGO_UNSTABLE_SPARSE_REGISTRY=true" >> $GITHUB_ENV
68+
# Enable sparse index after stabilization
69+
# https://github.com/rust-lang/cargo/pull/11224
70+
echo "REGISTRIES_CRATES_IO_PROTOCOL=sparse" >> $GITHUB_ENV
6871
shell: bash
6972
- name: "Install Rust Problem Matcher"
7073
run: echo "::add-matcher::${{ github.action_path }}/rust.json"

0 commit comments

Comments
 (0)