File tree Expand file tree Collapse file tree 3 files changed +3
-6
lines changed
Expand file tree Collapse file tree 3 files changed +3
-6
lines changed Original file line number Diff line number Diff line change 2323 image : ghcr.io/archlinux/archlinux:latest
2424 steps :
2525 - name : Install Rust
26- run : |
27- pacman -Sy rustup gcc glibc openssl pkgconf --noconfirm
28- rustup default nightly
26+ run : pacman -Sy rust gcc glibc openssl pkgconf --noconfirm
2927
3028 - name : Clone Project
3129 uses : actions/checkout@v4
3836 - name : Build and Test
3937 run : |
4038 cd rust/
41- cargo +nightly test
39+ cargo test
Original file line number Diff line number Diff line change @@ -165,7 +165,7 @@ where
165165 let rendered: String = cycle
166166 . iter ( )
167167 . map ( |s| s. as_str ( ) )
168- . intersperse ( " => " )
168+ . apply ( |iter| itertools :: intersperse ( iter , " => " ) )
169169 . collect ( ) ;
170170
171171 fl ! ( fll, "dep-cycle" , cycle = rendered)
Original file line number Diff line number Diff line change 2828//! along with Aura. If not, see <http://www.gnu.org/licenses/>.
2929
3030#![ warn( missing_docs) ]
31- #![ feature( iter_intersperse) ]
3231
3332pub ( crate ) mod command;
3433pub ( crate ) mod dirs;
You can’t perform that action at this time.
0 commit comments