Skip to content

Commit

Permalink
Merge pull request #434 from bvssvni/master
Browse files Browse the repository at this point in the history
Updated dependencies
  • Loading branch information
bvssvni committed May 24, 2019
2 parents dfb51fd + 7aa1912 commit b171446
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 18 deletions.
13 changes: 7 additions & 6 deletions Cargo.toml
Expand Up @@ -45,15 +45,16 @@ name = "shapes"
path = "src/shapes.rs"

[dependencies]
piston_window = "0.92.0"
piston_window = "0.93.0"
find_folder = "0.3.0"
piston-ai_behavior = "0.27.0"
piston2d-sprite = "0.51.0"
piston-ai_behavior = "0.28.0"
piston2d-sprite = "0.52.0"
image = "0.21.0"
piston2d-drag_controller = "0.25.0"
piston2d-drag_controller = "0.26.0"
piston2d-deform_grid = "0.2.0"
gfx = "0.17.1"
gfx_device_gl = "0.15.0"
vecmath = "0.3.0"
camera_controllers = "0.27.0"
vecmath = "1.0.0"
camera_controllers = "0.28.0"
rand = "0.6.0"
shader_version = "0.3.0"
8 changes: 4 additions & 4 deletions freetype/Cargo.toml
Expand Up @@ -9,9 +9,9 @@ name = "piston-example-freetype"
path = "src/main.rs"

[dependencies]
piston = "0.42.0"
piston2d-opengl_graphics = "0.61.0"
piston2d-graphics = "0.31.0"
pistoncore-sdl2_window = "0.55.0"
piston = "0.43.0"
piston2d-opengl_graphics = "0.62.0"
piston2d-graphics = "0.32.0"
pistoncore-sdl2_window = "0.56.0"
freetype-rs = "0.19.0"
find_folder = "0.3.0"
4 changes: 3 additions & 1 deletion src/deform.rs
@@ -1,7 +1,9 @@
extern crate piston_window;
extern crate drag_controller;
extern crate find_folder;
extern crate deform_grid;

use deform_grid::DeformGrid;
use piston_window::*;
use drag_controller::{ DragController, Drag };

Expand Down Expand Up @@ -32,7 +34,7 @@ fn main() {
let (width, height) = image.get_size();
let width = width as f64;
let height = height as f64;
let mut grid = deform::DeformGrid::new(
let mut grid = DeformGrid::new(
[0.0, 0.0, width, height],
20, 20
);
Expand Down
14 changes: 7 additions & 7 deletions user_input/Cargo.toml
Expand Up @@ -9,21 +9,21 @@ name = "piston-example-user_input"
path = "src/main.rs"

[dependencies]
piston = "0.42.0"
piston2d-opengl_graphics = "0.61.0"
piston2d-graphics = "0.31.0"
piston2d-touch_visualizer = "0.17.0"
piston = "0.43.0"
piston2d-opengl_graphics = "0.62.0"
piston2d-graphics = "0.32.0"
piston2d-touch_visualizer = "0.18.0"

[dependencies.pistoncore-sdl2_window]
version = "0.55.0"
version = "0.56.0"
optional = true

[dependencies.pistoncore-glfw_window]
version = "0.50.0"
version = "0.51.0"
optional = true

[dependencies.pistoncore-glutin_window]
version = "0.54.0"
version = "0.55.0"
optional = true

[features]
Expand Down

0 comments on commit b171446

Please sign in to comment.