1
1
mirror of https://github.com/wez/wezterm.git synced 2024-12-24 05:42:03 +03:00

bump image crate dep

This avoids compiling two different versions of image
This commit is contained in:
Wez Furlong 2019-05-26 08:13:24 -07:00
parent a05bca460e
commit b83656b378
3 changed files with 3 additions and 3 deletions

View File

@ -7,7 +7,7 @@ edition = "2018"
[dependencies]
bitflags = "~1.0"
failure = "~0.1"
image = "~0.19"
image = "0.21"
ordered-float = "~0.5"
unicode-segmentation = "~1.2"
unicode-width = "~0.1"

View File

@ -2,7 +2,7 @@
// and inclusive range
#![cfg_attr(feature = "cargo-clippy", allow(clippy::range_plus_one))]
use super::*;
use image::{self, GenericImage};
use image::{self, GenericImageView};
use ordered_float::NotNaN;
use std::fmt::Write;
use std::sync::Arc;

View File

@ -11,7 +11,7 @@ cassowary = "~0.3"
derive_builder = "~0.5"
failure = "~0.1"
fnv = "~1.0"
image = "~0.19"
image = "0.21"
libc = "~0.2"
memmem = "~0.1"
num = "~0.2"