Skip to content

Commit 705b8cb

Browse files
authored
Merge pull request #2297 from rbtcollins/master
effective-limits switched to thiserror
2 parents c022b92 + c7f3547 commit 705b8cb

File tree

3 files changed

+58
-38
lines changed

3 files changed

+58
-38
lines changed

Cargo.lock

Lines changed: 56 additions & 36 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ chrono = "0.4"
2525
clap = "2"
2626
download = { path = "download" }
2727
error-chain = "0.12"
28-
effective-limits = "0.3"
28+
effective-limits = "0.4"
2929
flate2 = "1"
3030
git-testament = "0.1.4"
3131
home = "0.5"

src/errors.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,14 @@ pub const TOOLSTATE_MSG: &str =
2222
error_chain! {
2323
links {
2424
Download(download::Error, download::ErrorKind);
25-
Limits(effective_limits::Error, effective_limits::ErrorKind);
2625
}
2726

2827
foreign_links {
2928
Temp(temp::Error);
3029
Io(io::Error);
3130
Open(opener::OpenError);
3231
Thread(std::sync::mpsc::RecvError);
32+
Limits(effective_limits::Error);
3333
}
3434

3535
errors {

0 commit comments

Comments
 (0)