Skip to content

Commit e69d660

Browse files
committed
⬆️ Bump MSRV from 1.85.0 to 1.89.0
To get temporary lifetime extension, xref rust-lang/rust#140593
1 parent 56bba1b commit e69d660

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/bench.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
strategy:
2626
matrix:
2727
toolchain:
28-
- 1.85.0 # msrv
28+
- 1.89.0 # msrv
2929
- stable
3030
steps:
3131
- name: Install git before fetching repository

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ description = "Accelerating GeoTIFF readers with Rust."
66
readme = "README.md"
77
repository = "https://github.com/weiji14/foss4g2025"
88
license = "MPL-2.0"
9-
rust-version = "1.85.0"
9+
rust-version = "1.89.0"
1010
authors = ["Wei Ji <[email protected]>"]
1111

1212
[dependencies]

benches/read_geotiff.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ use url::Url;
3636

3737
// gdal
3838
fn read_geotiff_gdal(fpath: &str, n_threads: usize) {
39-
let n_threads: String = format!("NUM_THREADS={}", n_threads);
39+
let n_threads: String = format!("NUM_THREADS={n_threads}");
4040
let options = DatasetOptions {
4141
open_flags: GdalOpenFlags::default(),
4242
allowed_drivers: Some(&["LIBERTIFF"]),

0 commit comments

Comments
 (0)