We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 56bba1b commit 8146c78Copy full SHA for 8146c78
Cargo.toml
@@ -6,7 +6,7 @@ description = "Accelerating GeoTIFF readers with Rust."
6
readme = "README.md"
7
repository = "https://github.com/weiji14/foss4g2025"
8
license = "MPL-2.0"
9
-rust-version = "1.85.0"
+rust-version = "1.89.0"
10
authors = ["Wei Ji <[email protected]>"]
11
12
[dependencies]
benches/read_geotiff.rs
@@ -36,7 +36,7 @@ use url::Url;
36
37
// gdal
38
fn read_geotiff_gdal(fpath: &str, n_threads: usize) {
39
- let n_threads: String = format!("NUM_THREADS={}", n_threads);
+ let n_threads: String = format!("NUM_THREADS={n_threads}");
40
let options = DatasetOptions {
41
open_flags: GdalOpenFlags::default(),
42
allowed_drivers: Some(&["LIBERTIFF"]),
0 commit comments