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 ...
This commit is contained in:
Gered 2023-01-18 13:26:53 -05:00
parent f902b16d3c
commit 66bf1e40cc
7 changed files with 8 additions and 8 deletions

View file

@ -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" ] }

View file

@ -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" ] }

View file

@ -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" ] }

View file

@ -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"] }

View file

@ -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" ] }

View file

@ -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" ] }

View file

@ -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]]