Update pinned nightly and rustdoc format version (#1236)

This commit is contained in:
John DiSanti 2022-03-04 11:28:31 -08:00 committed by GitHub
parent 5db1f3588e
commit d823f61156
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 8 additions and 8 deletions

View File

@ -68,7 +68,7 @@ jobs:
- name: Clippy
run: cargo clippy --all-features
- name: Unused Dependencies
run: cargo +nightly-2022-02-22 udeps
run: cargo +nightly-2022-03-03 udeps
- name: Additional per-crate checks
run: ../tools/additional-per-crate-checks.sh ./sdk/ ../tools/ci-cdk/
env:
@ -87,7 +87,7 @@ jobs:
default: true
- uses: actions-rs/toolchain@v1
with:
toolchain: nightly-2022-02-22
toolchain: nightly-2022-03-03
default: false
- name: Cache cargo bin
uses: actions/cache@v2
@ -97,7 +97,7 @@ jobs:
- name: Install additional cargo binaries
run: |
if [[ ! -f ~/.cargo/bin/cargo-udeps ]]; then
cargo +nightly-2022-02-22 install cargo-udeps
cargo +nightly-2022-03-03 install cargo-udeps
fi
if [[ ! -f ~/.cargo/bin/cargo-hack ]]; then
cargo install cargo-hack

View File

@ -12,4 +12,4 @@ echo "### Checking for duplicate dependency versions in the normal dependency gr
cargo tree -d --edges normal --all-features
echo "### Running api-linter"
cargo +nightly-2022-02-22 api-linter --all-features
cargo +nightly-2022-03-03 api-linter --all-features

View File

@ -363,9 +363,9 @@ checksum = "f497285884f3fcff424ffc933e56d7cbca511def0c9831a7f9b5f6153e3cc89b"
[[package]]
name = "rustdoc-types"
version = "0.6.0"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "22a3ce1940d83d496b6dcfc07827da84877971d082ae5740b3a710ca1824d09d"
checksum = "83828d28c3b4f860bd077db7fd1b18a730bf393be650a5be997820d5e63935ea"
dependencies = [
"serde",
]

View File

@ -13,7 +13,7 @@ cargo_metadata = "0.14"
clap = { version = "3.1", features = ["derive"] }
owo-colors = { version = "3", features = ["supports-colors"] }
pest = "2" # For pretty error formatting
rustdoc-types = "0.6"
rustdoc-types = "0.7"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
smithy-rs-tool-common = { version = "0.1", path = "../smithy-rs-tool-common" }

View File

@ -7,4 +7,4 @@ set -e
cd "$(dirname $0)"
cargo clippy
cargo +nightly-2022-02-22 test
cargo +nightly-2022-03-03 test