Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove cargo-check-external-types #1820

Merged
merged 3 commits into from
Oct 11, 2022
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions tools/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ ARG cargo_deny_version=0.12.2
ARG cargo_udeps_version=0.1.29
ARG cargo_hack_version=0.5.14
ARG cargo_minimal_versions_version=0.1.4
ARG cargo_check_external_types_version=0.1.4
ENV RUSTUP_HOME=/opt/rustup \
CARGO_HOME=/opt/cargo \
PATH=/opt/cargo/bin/:${PATH} \
Expand Down Expand Up @@ -97,14 +98,14 @@ RUN set -eux; \
cargo install cargo-deny --locked --version ${cargo_deny_version}; \
cargo +${rust_nightly_version} install cargo-udeps --locked --version ${cargo_udeps_version}; \
cargo install cargo-hack --locked --version ${cargo_hack_version}; \
cargo install cargo-minimal-versions --version ${cargo_minimal_versions_version}; \
cargo install cargo-minimal-versions --locked --version ${cargo_minimal_versions_version}; \
cargo install cargo-check-external-types --locked --version ${cargo_check_external_types_version}; \
if [[ "${checkout_smithy_rs_tools}" == "true" ]]; then \
git clone https://github.com/awslabs/smithy-rs.git; \
cd smithy-rs; \
git checkout ${smithy_rs_commit_hash}; \
fi; \
cargo install --locked --path tools/publisher; \
cargo install --locked --path tools/cargo-check-external-types; \
cargo install --locked --path tools/changelogger; \
cargo install --locked --path tools/crate-hasher; \
cargo install --locked --path tools/sdk-lints; \
Expand Down
Loading