diff --git a/Cargo.lock b/Cargo.lock index db16949..e0c7828 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1,6 +1,6 @@ # This file is automatically @generated by Cargo. # It is not intended for manual editing. -version = 3 +version = 4 [[package]] name = "ab_glyph" @@ -1058,7 +1058,18 @@ version = "0.55.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5b7e8400772fb39fb8c01af57d89a880c02ed0e1a1d10429ded8ebedb5511494" dependencies = [ - "pistoncore-event_loop", + "pistoncore-event_loop 0.55.0", + "pistoncore-input", + "pistoncore-window", +] + +[[package]] +name = "piston" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5f746ca3e6e3dfca8a8492801d756d1da173d2783f8f633ddb9c5e5a9115e63d" +dependencies = [ + "pistoncore-event_loop 1.0.0", "pistoncore-input", "pistoncore-window", ] @@ -1165,7 +1176,7 @@ checksum = "6b4a98f07baec9a02ea0c5d3f6c27db8db9592519d00cfe377150fdcd6a5a147" dependencies = [ "gfx", "gfx_device_gl", - "piston", + "piston 0.55.0", "piston-texture", "piston2d-gfx_graphics", "piston2d-graphics", @@ -1184,6 +1195,17 @@ dependencies = [ "spin_sleep", ] +[[package]] +name = "pistoncore-event_loop" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a28e508c16054196edd09b7214d42f9325374173c8322d6c0235d97c42dfcd52" +dependencies = [ + "pistoncore-input", + "pistoncore-window", + "spin_sleep", +] + [[package]] name = "pistoncore-glutin_window" version = "0.72.0" @@ -1362,7 +1384,7 @@ dependencies = [ name = "rsnake" version = "0.1.7" dependencies = [ - "piston", + "piston 1.0.0", "piston2d-graphics", "piston2d-opengl_graphics", "piston_window", diff --git a/Cargo.toml b/Cargo.toml index 3f8d609..e228c0e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -15,7 +15,7 @@ panic = "abort" strip = "symbols" [dependencies] -piston = "0.55.0" +piston = "1.0.0" piston2d-graphics = "0.44.0" pistoncore-glutin_window = "0.72.0" piston2d-opengl_graphics = "0.84.0"