Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update dependencies #5

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
14 changes: 7 additions & 7 deletions Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "engiffen"
version = "0.8.1"
version = "0.8.2"
authors = ["Jesse Bees <jesse@toomanybees.com>"]
description = """
Encodes GIF images from sequences of images. Includes an installable
Expand All @@ -24,13 +24,13 @@ debug-stderr = []
globbing = ["glob"]

[dependencies]
lab = "~0.4"
image = "~0.13"
lab = "~0.8"
image = "~0.19"
gif = "~0.9"
color_quant = "~1.0.0"
getopts = "0.2.14"
rayon = "~0.7"
rand = "~0.3"
color_quant = "~1.1"
getopts = "0.2.21"
rayon = "~1.8"
rand = "~0.4"
fnv = "~1.0"
glob = { version = "~0.2", optional = true }

Expand Down
2 changes: 1 addition & 1 deletion src/main.rs
Expand Up @@ -42,7 +42,7 @@ impl fmt::Display for RuntimeError {
}
}

fn run_engiffen(args: &Args) -> Result<((Option<String>, Duration)), RuntimeError> {
fn run_engiffen(args: &Args) -> Result<(Option<String>, Duration), RuntimeError> {
let mut source_images: Vec<_> = match args.source {
SourceImages::StartEnd(ref dir, ref start_path, ref end_path) => {
let start_string = start_path.as_os_str();
Expand Down
2 changes: 1 addition & 1 deletion src/parse_args.rs
Expand Up @@ -83,7 +83,7 @@ impl error::Error for ArgsError {
}
}

fn cause(&self) -> Option<&error::Error> {
fn cause(&self) -> Option<&dyn error::Error> {
match *self {
ArgsError::Parse(ref err) => Some(err),
ArgsError::ParseInt(ref err) => Some(err),
Expand Down