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:
parent
f902b16d3c
commit
66bf1e40cc
|
@ -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" ] }
|
||||
|
||||
|
|
|
@ -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" ] }
|
||||
|
||||
|
|
|
@ -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" ] }
|
||||
|
||||
|
|
|
@ -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"] }
|
||||
|
|
|
@ -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" ] }
|
||||
|
||||
|
|
|
@ -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" ] }
|
||||
|
||||
|
|
|
@ -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]]
|
||||
|
|
Loading…
Reference in a new issue