Follow up action item from a topic I raised in #5864 (comment) relative to adding some additional test repos to improve our coverage of string formatting with various characters and encodings.
One suggested repo to include is https://github.com/unicode-org/icu4x as well as some from https://github.com/unicode-rs
I opted to simply mention icu4x as part of this instead of directly adding it because I noticed that repo is using cargo make and I didn't have bandwidth to determine if that'd cause any issues/require any additional changes to our script.
New repos can be wired up by adding a call site with respective args here:
|
check_repo "https://github.com/rust-lang/rust.git" rust-lang-rust |
|
check_repo "https://github.com/rust-lang/cargo.git" cargo |
|
check_repo "https://github.com/rust-lang/miri.git" miri |
|
check_repo "https://github.com/rust-lang/rust-analyzer.git" rust-analyzer |
|
check_repo "https://github.com/bitflags/bitflags.git" bitflags |
|
check_repo "https://github.com/rust-lang/log.git" log |
|
check_repo "https://github.com/rust-lang/mdBook.git" mdBook |
|
check_repo "https://github.com/rust-lang/packed_simd.git" packed_simd |
|
check_repo "https://github.com/rust-lang/rust-semverver.git" check_repo |
|
check_repo "https://github.com/Stebalien/tempfile.git" tempfile |
|
check_repo "https://github.com/rust-lang/futures-rs.git" futures-rs |
|
check_repo "https://github.com/dtolnay/anyhow.git" anyhow |
|
check_repo "https://github.com/dtolnay/thiserror.git" thiserror |
|
check_repo "https://github.com/dtolnay/syn.git" syn |
|
check_repo "https://github.com/serde-rs/serde.git" serde |
|
check_repo "https://github.com/rust-lang/rustlings.git" rustlings |
|
check_repo "https://github.com/rust-lang/rustup.git" rustup |
|
check_repo "https://github.com/SergioBenitez/Rocket.git" Rocket |
|
check_repo "https://github.com/rustls/rustls.git" rustls |
|
check_repo "https://github.com/rust-lang/rust-bindgen.git" rust-bindgen |
|
check_repo "https://github.com/hyperium/hyper.git" hyper |
|
check_repo "https://github.com/actix/actix.git" actix |
|
check_repo "https://github.com/denoland/deno.git" denoland_deno |
Follow up action item from a topic I raised in #5864 (comment) relative to adding some additional test repos to improve our coverage of string formatting with various characters and encodings.
One suggested repo to include is https://github.com/unicode-org/icu4x as well as some from https://github.com/unicode-rs
I opted to simply mention icu4x as part of this instead of directly adding it because I noticed that repo is using
cargo makeand I didn't have bandwidth to determine if that'd cause any issues/require any additional changes to our script.New repos can be wired up by adding a call site with respective args here:
rustfmt/ci/check_diff.sh
Lines 170 to 192 in b069aac