From e3dfb997af1496434235415ee18e386b8e679835 Mon Sep 17 00:00:00 2001 From: Jason Dagit Date: Sat, 1 Oct 2016 16:40:10 -0700 Subject: [PATCH] Relax version bounds --- Cargo.toml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index e4e6e0b9..2831f224 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,10 +9,10 @@ repository = "https://github.com/nukep/glium-sdl2/" description = "An SDL2 backend for Glium - a high-level OpenGL wrapper for the Rust language." [dependencies] -sdl2 = "0.19" +sdl2 = "*" [dependencies.glium] -version = "0.14" +version = "*" # Do not enable any features by default, as to not bring in unwanted dependencies # (Cargo seems to apply a "union" of requested features across projects for any given dependency). # Instead, Let the library user define which features they want. @@ -20,6 +20,6 @@ features = [] default-features = false [dev-dependencies] -clock_ticks = "0.1.0" -genmesh = "0.4" -obj = { version = "0.5", features = ["usegenmesh"] } +clock_ticks = "*" +genmesh = "*" +obj = { version = "*", features = ["usegenmesh"] }