From 13f9bc4d5a05673a223ea8436cca77bf199179b6 Mon Sep 17 00:00:00 2001 From: Bastien Orivel Date: Mon, 4 Dec 2017 21:47:49 +0100 Subject: [PATCH] Update lazy_static to 1.0 and bump version --- Cargo.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 6cccf40..d2991b5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "offscreen_gl_context" license = "MIT / Apache-2.0" -version = "0.13.0" +version = "0.13.1" authors = ["Emilio Cobos Álvarez ", "The Servo Project Developers"] description = "Creation and manipulation of HW accelerated offscreen rendering contexts in multiple platforms. Originally intended for the Servo project's WebGL implementation." repository = "https://github.com/emilio/rust-offscreen-rendering-context" @@ -23,7 +23,7 @@ euclid = "0.15" serde = { version = "1.0", optional = true } osmesa-sys = { version = "0.1", optional = true } libloading = { version = "0.4", optional = true, default-features = false } -lazy_static = { version = "0.2", optional = true } +lazy_static = { version = "1", optional = true } [target.x86_64-apple-darwin.dependencies] core-foundation = "0.4" @@ -45,7 +45,7 @@ user32-sys = "0.2" kernel32-sys = "0.2" [target.'cfg(any(target_os="macos", target_os="windows", target_os="android", target_os="ios"))'.dependencies] -lazy_static = "0.2" +lazy_static = "1" [target.'cfg(target_os = "android")'.dependencies] libloading = { version = "0.4", default-features = false }