Skip to content

Commit

Permalink
🔂 upgrade minimum rust versions
Browse files Browse the repository at this point in the history
  • Loading branch information
gerardcl committed Oct 1, 2023
1 parent 5c7e427 commit 6c22a64
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
matrix:
rust:
- stable
- 1.65.0
- 1.70.0
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
Expand All @@ -29,7 +29,7 @@ jobs:
matrix:
rust:
- stable
- 1.65.0
- 1.70.0
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
Expand All @@ -48,7 +48,7 @@ jobs:
matrix:
rust:
- stable
- 1.65.0
- 1.70.0
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
Expand All @@ -69,7 +69,7 @@ jobs:
matrix:
rust:
- stable
- 1.65.0
- 1.70.0
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
Expand Down
5 changes: 4 additions & 1 deletion src/rodalies/timetable.rs
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,10 @@ pub async fn search_timetable_input(
println!("📢 Some trips have extra transfers. You might consider getting shorter trips.");
}

println!("🌡 Expected temperatures at destination between {}C and {}C", min_temp[0], max_temp[0]);
println!(
"🌡 Expected temperatures at destination between {}C and {}C",
min_temp[0], max_temp[0]
);
results_table.printstd();

Ok(())
Expand Down

0 comments on commit 6c22a64

Please sign in to comment.