Skip to content

Commit

Permalink
Published 0.38.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bvssvni committed Oct 13, 2018
1 parent 7b7d227 commit 131ac85
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "dyon"
version = "0.37.0"
version = "0.38.0"
authors = ["Sven Nilsen <bvssvni@gmail.com>"]
keywords = ["script", "scripting", "game", "language", "piston"]
description = "A rusty dynamically typed scripting language"
Expand Down
8 changes: 4 additions & 4 deletions interactive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "piston-dyon_interactive"
version = "0.23.0"
version = "0.24.0"
authors = ["Sven Nilsen <bvssvni@gmail.com>"]
description = "A library for interactive coding with the Piston game engine"
keywords = ["script", "scripting", "game", "language", "piston"]
Expand All @@ -12,20 +12,20 @@ homepage = "https://github.com/pistondevelopers/dyon/interactive"
name = "dyon_interactive"

[dependencies.dyon]
version = "0.37.0"
version = "0.38.0"
path = ".."

[dependencies]
piston = "0.37.0"
current = "0.1.2"
piston-texture = "0.6.0"
image = "0.19.0"
image = "0.20.0"

[dependencies.piston2d-graphics]
version = "0.26.0"
features = ["glyph_cache_rusttype"]

[dev-dependencies]
pistoncore-sdl2_window = "0.50.0"
piston2d-opengl_graphics = "0.53.0"
piston2d-opengl_graphics = "0.54.0"
piston-music = "0.24.0"
2 changes: 1 addition & 1 deletion interactive/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -818,7 +818,7 @@ pub fn pxl__image_pos_color(rt: &mut Runtime) -> Result<(), String> {

#[allow(non_snake_case)]
pub fn pxl__image_pos(rt: &mut Runtime) -> Result<(), String> {
use image::{GenericImage, RgbaImage};
use image::{GenericImageView, RgbaImage};

let images = unsafe { &*Current::<Vec<RgbaImage>>::new() };
let pos: [f64; 2] = rt.pop_vec4()?;
Expand Down

0 comments on commit 131ac85

Please sign in to comment.