Skip to content

Commit

Permalink
Updated dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
bvssvni committed Oct 2, 2015
1 parent e84d86a commit bbc9aa0
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 14 deletions.
12 changes: 6 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,15 +37,15 @@ name = "texture_swap"
path = "src/texture_swap.rs"

[dependencies]
piston_window = "0.21.0"
piston_window = "0.22.0"
find_folder = "0.2.0"
piston-ai_behavior = "0.9.0"
piston2d-sprite = "0.15.0"
piston-ai_behavior = "0.10.0"
piston2d-sprite = "0.16.0"
image = "0.3.11"
piston2d-drag_controller = "0.8.0"
piston2d-drag_controller = "0.9.0"
gfx = "0.7.1"
gfx_device_gl = "0.5.0"
vecmath = "0.2.0"
camera_controllers = "0.8.0"
pistoncore-sdl2_window = "0.14.0"
camera_controllers = "0.9.0"
pistoncore-sdl2_window = "0.15.0"
rand = "0.3.8"
6 changes: 3 additions & 3 deletions freetype/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ name = "piston-example-freetype"
path = "src/main.rs"

[dependencies]
piston = "0.11.0"
piston2d-opengl_graphics = "0.13.0"
piston = "0.12.0"
piston2d-opengl_graphics = "0.14.0"
piston2d-graphics = "0.10.0"
pistoncore-sdl2_window = "0.14.0"
pistoncore-sdl2_window = "0.15.0"
freetype-rs = "0.3.0"
find_folder = "0.2.0"
10 changes: 5 additions & 5 deletions user_input/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,20 +9,20 @@ name = "piston-example-user_input"
path = "src/main.rs"

[dependencies]
piston = "0.11.0"
piston2d-opengl_graphics = "0.13.0"
piston = "0.12.0"
piston2d-opengl_graphics = "0.14.0"
piston2d-graphics = "0.10.0"

[dependencies.pistoncore-sdl2_window]
version = "0.14.0"
version = "0.15.0"
optional = true

[dependencies.pistoncore-glfw_window]
version = "0.10.0"
version = "0.11.0"
optional = true

[dependencies.pistoncore-glutin_window]
version = "0.13.0"
version = "0.14.0"
optional = true

[features]
Expand Down
1 change: 1 addition & 0 deletions user_input/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ fn main() {
match button {
Button::Keyboard(key) => println!("Released keyboard key '{:?}'", key),
Button::Mouse(button) => println!("Released mouse button '{:?}'", button),
Button::Joystick(button) => println!("Released joystick button '{:?}'", button),
}
};
e.mouse_cursor(|x, y| {
Expand Down

0 comments on commit bbc9aa0

Please sign in to comment.