From b11462df0728a4cec7238647287cb35402faf607 Mon Sep 17 00:00:00 2001 From: Simon Sapin Date: Thu, 19 Nov 2015 18:00:33 +0100 Subject: [PATCH] Replace * deps with semver-compatible to current crates.io verison This will stop `cargo update` from updating to future versions that contain breaking changes. --- Cargo.toml | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 16978e9..b383b7d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -15,19 +15,19 @@ khronos_api = "0.0.8" texture_surface = ["layers"] [dependencies] -libc = "*" -log = "*" +libc = "0.2" +log = "0.3.3" gleam = "0.1" euclid = "0.3" -serde = "*" -serde_macros = "*" +serde = "0.6.1" +serde_macros = "0.6.1" [dependencies.layers] git = "https://github.com/servo/rust-layers" optional = true [target.x86_64-apple-darwin.dependencies] -core-foundation = "*" +core-foundation = "0.2.0" cgl = "0.1" [target.i686-unknown-linux-gnu.dependencies.x11] @@ -49,4 +49,3 @@ features = ["xlib"] [target.x86_64-pc-windows-gnu.dependencies.glutin] git = "https://github.com/servo/glutin" branch = "servo" -