From b1b63344315e2d1e0d25844a8274f0b12a843d06 Mon Sep 17 00:00:00 2001 From: Sven Nilsen Date: Wed, 10 Feb 2016 19:30:25 +0100 Subject: [PATCH] Update dependencies - Bumped to 0.13.0 - Removed unused `use` in demo example --- Cargo.toml | 4 ++-- examples/demo.rs | 1 - 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index d0f9d5f9..e8eb5ea5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,7 +2,7 @@ name = "sdl2_mixer" description = "SDL2_mixer bindings for Rust" repository = "https://github.com/andelf/rust-sdl2_mixer" -version = "0.12.0" +version = "0.13.0" license = "MIT" authors = ["ShuYu Wang "] keywords = ["SDL", "windowing", "graphics", "music", "sound"] @@ -13,7 +13,7 @@ path = "src/sdl2_mixer/lib.rs" [dependencies] bitflags = "0.3.2" -sdl2 = "0.13" +sdl2 = "0.14" sdl2-sys = "0.8" libc = "0.2" diff --git a/examples/demo.rs b/examples/demo.rs index 054b5b44..469bbddf 100644 --- a/examples/demo.rs +++ b/examples/demo.rs @@ -3,7 +3,6 @@ extern crate sdl2_mixer; use std::env; use std::path::Path; -use sdl2::*; use sdl2_mixer::{INIT_MP3, INIT_FLAC, INIT_MOD, INIT_FLUIDSYNTH, INIT_MODPLUG, INIT_OGG, AUDIO_S16LSB};