From 1e7127e8b2a89eb737684a2a64f71710ce266479 Mon Sep 17 00:00:00 2001 From: Bastien Orivel Date: Mon, 26 Feb 2018 19:26:49 +0100 Subject: [PATCH] Update libloading to 0.5 and bump version --- .travis.yml | 6 +++--- Cargo.toml | 8 ++++---- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.travis.yml b/.travis.yml index 3410860..76e5a65 100644 --- a/.travis.yml +++ b/.travis.yml @@ -12,9 +12,10 @@ addons: - libxxf86vm-dev - libosmesa6-dev - libgles2-mesa-dev + - gcc-arm-linux-androideabi before_install: - - if [ "$TRAVIS_OS_NAME" = "linux" ]; then export CXX=g++-4.8; fi + - if [ "$TRAVIS_OS_NAME" = "linux" ]; then export CXX=g++-4.8; rustup target add arm-linux-androideabi; fi os: - linux @@ -26,6 +27,5 @@ script: # - cargo test --verbose # - cargo test --verbose --features test_egl_in_linux - if [ "$TRAVIS_OS_NAME" != "linux" ]; then cargo test --verbose; fi - - rustup target add arm-linux-androideabi - - cargo build --verbose --target=arm-linux-androideabi + - if [ "$TRAVIS_OS_NAME" == "linux" ]; then cargo build --verbose --target=arm-linux-androideabi; fi diff --git a/Cargo.toml b/Cargo.toml index 342a9fd..e9b58c4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "offscreen_gl_context" license = "MIT / Apache-2.0" -version = "0.15.0" +version = "0.15.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" @@ -22,7 +22,7 @@ gleam = "0.4.10" euclid = "0.17" serde = { version = "1.0", optional = true } osmesa-sys = { version = "0.1", optional = true } -libloading = { version = "0.4", optional = true, default-features = false } +libloading = { version = "0.5", optional = true, default-features = false } lazy_static = { version = "1", optional = true } [target.x86_64-apple-darwin.dependencies] @@ -31,7 +31,7 @@ cgl = "0.2" [target.'cfg(target_os = "ios")'.dependencies] objc = "0.2" -libloading = { version = "0.4", default-features = false } +libloading = { version = "0.5", default-features = false } [target.'cfg(all(unix, not(any(target_os = "macos", target_os = "android", target_os = "ios"))))'.dependencies.x11] optional = true @@ -45,4 +45,4 @@ winapi = { version = "0.3", features = ["wingdi", "winuser", "libloaderapi"] } lazy_static = "1" [target.'cfg(target_os = "android")'.dependencies] -libloading = { version = "0.4", default-features = false } +libloading = { version = "0.5", default-features = false }