Skip to content

Commit

Permalink
Remove cargo-check-external-types (#1820)
Browse files Browse the repository at this point in the history
This tool now has its own repository:
https://github.com/awslabs/cargo-check-external-types
  • Loading branch information
jdisanti authored Oct 11, 2022
1 parent bf3fbc2 commit 046edd5
Show file tree
Hide file tree
Showing 29 changed files with 3 additions and 3,232 deletions.
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

0 comments on commit 046edd5

Please sign in to comment.