diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 97f6798..9aa8c28 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -35,7 +35,7 @@ jobs: # giving us about 6 months of coverage. # # Minimum supported rust version (MSRV) - - "georust/geo-ci:proj-9.4.0-rust-1.75" + - "rust:1.86" # Two most recent releases - we omit older ones for expedient CI (TBD) container: image: ${{ matrix.container_image }} diff --git a/Cargo.toml b/Cargo.toml index b9e9b90..1c3a9d3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,20 +8,19 @@ repository = "https://github.com/georust/geocoding" keywords = ["gecoding", "geo", "gis", "geospatial"] readme = "README.md" edition = "2018" -rust-version = "1.75" +rust-version = "1.86" [dependencies] -thiserror = "1.0" +thiserror = "2.0" geo-types = "0.7.8" num-traits = "0.2" serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" -reqwest = { version = "0.11", default-features = false, features = [ +reqwest = { version = "0.12", default-features = false, features = [ "default-tls", "blocking", "json", ] } -hyper = "0.14.11" [features] default = ["reqwest/default"]