From 66bf1e40ccdd50a943581f4df71c932e3dc1a08a Mon Sep 17 00:00:00 2001 From: gered Date: Wed, 18 Jan 2023 13:26:53 -0500 Subject: [PATCH] pin anyhow and thiserror versions due to encountering some compile errors on a fresh system which pulled down the newest minor versions of both. these two libraries do not seem to follow "good" semantic versioning ... ? ugh. will try to work out the compiler issues with the latest versions of these later ... --- examples/audio_playback/Cargo.toml | 2 +- examples/balls/Cargo.toml | 2 +- examples/balls_v2/Cargo.toml | 2 +- examples/slimed/Cargo.toml | 2 +- examples/template_complicated/Cargo.toml | 2 +- examples/template_minimal/Cargo.toml | 2 +- libretrogd/Cargo.toml | 4 ++-- 7 files changed, 8 insertions(+), 8 deletions(-) diff --git a/examples/audio_playback/Cargo.toml b/examples/audio_playback/Cargo.toml index 142caa5..f2291e6 100644 --- a/examples/audio_playback/Cargo.toml +++ b/examples/audio_playback/Cargo.toml @@ -4,7 +4,7 @@ version = "0.1.0" edition = "2021" [dependencies] -anyhow = "1.0.55" +anyhow = "=1.0.55" libretrogd = { path = "../../libretrogd" } sdl2 = { version = "0.34.5", features = ["static-link", "bundled", "unsafe_textures" ] } diff --git a/examples/balls/Cargo.toml b/examples/balls/Cargo.toml index 8cd0212..b64438c 100644 --- a/examples/balls/Cargo.toml +++ b/examples/balls/Cargo.toml @@ -4,7 +4,7 @@ version = "0.1.0" edition = "2021" [dependencies] -anyhow = "1.0.55" +anyhow = "=1.0.55" libretrogd = { path = "../../libretrogd" } sdl2 = { version = "0.34.5", features = ["static-link", "bundled", "unsafe_textures" ] } diff --git a/examples/balls_v2/Cargo.toml b/examples/balls_v2/Cargo.toml index 4fde2f2..741f35c 100644 --- a/examples/balls_v2/Cargo.toml +++ b/examples/balls_v2/Cargo.toml @@ -4,7 +4,7 @@ version = "0.1.0" edition = "2021" [dependencies] -anyhow = "1.0.55" +anyhow = "=1.0.55" libretrogd = { path = "../../libretrogd", features = [] } sdl2 = { version = "0.34.5", features = ["static-link", "bundled", "unsafe_textures" ] } diff --git a/examples/slimed/Cargo.toml b/examples/slimed/Cargo.toml index 32f62fb..3d98d2a 100644 --- a/examples/slimed/Cargo.toml +++ b/examples/slimed/Cargo.toml @@ -4,7 +4,7 @@ version = "0.1.0" edition = "2021" [dependencies] -anyhow = "1.0.55" +anyhow = "=1.0.55" libretrogd = { path = "../../libretrogd", features = [] } sdl2 = { version = "0.34.5", features = ["static-link", "bundled", "unsafe_textures" ] } serde = { version = "1.0.136", features = ["derive"] } diff --git a/examples/template_complicated/Cargo.toml b/examples/template_complicated/Cargo.toml index 2493658..06559d8 100644 --- a/examples/template_complicated/Cargo.toml +++ b/examples/template_complicated/Cargo.toml @@ -4,7 +4,7 @@ version = "0.1.0" edition = "2021" [dependencies] -anyhow = "1.0.55" +anyhow = "=1.0.55" libretrogd = { path = "../../libretrogd" } sdl2 = { version = "0.34.5", features = ["static-link", "bundled", "unsafe_textures" ] } diff --git a/examples/template_minimal/Cargo.toml b/examples/template_minimal/Cargo.toml index 1935b4e..475d126 100644 --- a/examples/template_minimal/Cargo.toml +++ b/examples/template_minimal/Cargo.toml @@ -4,7 +4,7 @@ version = "0.1.0" edition = "2021" [dependencies] -anyhow = "1.0.55" +anyhow = "=1.0.55" libretrogd = { path = "../../libretrogd" } sdl2 = { version = "0.34.5", features = ["static-link", "bundled", "unsafe_textures" ] } diff --git a/libretrogd/Cargo.toml b/libretrogd/Cargo.toml index f6930fb..1579d7c 100644 --- a/libretrogd/Cargo.toml +++ b/libretrogd/Cargo.toml @@ -13,14 +13,14 @@ wide = [] sdl2 = { version = "0.34.5", features = ["static-link", "bundled", "unsafe_textures" ] } byte-slice-cast = "1.2.1" byteorder = "1.4.3" -thiserror = "1.0.30" +thiserror = "=1.0.30" rand = "0.8.5" num-traits = "0.2.14" [dev-dependencies] claim = "0.5.0" criterion = "0.3.5" -anyhow = "1.0.55" +anyhow = "=1.0.55" tempfile = "3.3.0" [[bench]]