From 8be25fa56a6ecbc652a86c689fdd18e932c7c6d2 Mon Sep 17 00:00:00 2001 From: kennytm Date: Fri, 3 Nov 2017 06:15:01 +0800 Subject: [PATCH] Update dependencies. --- .travis.yml | 20 ++++++++++++-------- Cargo.toml | 8 ++++++-- 2 files changed, 18 insertions(+), 10 deletions(-) diff --git a/.travis.yml b/.travis.yml index dbb1ad1..65d4f6c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -12,14 +12,18 @@ addons: - libiberty-dev - gcc-multilib -os: - - linux - - osx - -rust: - - 1.17.0 - - beta - - nightly +matrix: + include: + - os: linux + rust: 1.17.0 + - os: linux + rust: 1.21.0 + - os: osx + rust: 1.21.0 + - os: linux + rust: beta + - os: linux + rust: nightly matrix: allow_failures: diff --git a/Cargo.toml b/Cargo.toml index 142a27d..9859984 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,7 +2,7 @@ name = "qrcode" description = "QR code encoder in Rust" license = "MIT / Apache-2.0" -version = "0.4.0" +version = "0.5.0" authors = ["kennytm "] keywords = ["qrcode"] repository = "https://github.com/kennytm/qrcode-rust" @@ -14,9 +14,13 @@ exclude = [ [badges] travis-ci = { repository = "kennytm/qrcode-rust" } +coveralls = { repository = "kennytm/qrcode-rust" } +is-it-maintained-issue-resolution = { repository = "kennytm/qrcode-rust" } +is-it-maintained-open-issues = { repository = "kennytm/qrcode-rust" } +maintenance = { status = "passively-maintained" } [dependencies] -image = { version = "0.13", optional = true } +image = { version = "0.17", optional = true } [features] default = ["image", "svg"]