Skip to content

Commit

Permalink
some mirror change
Browse files Browse the repository at this point in the history
remove windows-gnu targets in CI;
add missing doc for foreign_links errors;
upgrade dependencies;
  • Loading branch information
DCjanus committed Aug 7, 2019
1 parent 1fc9b56 commit 96c5e7a
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -56,14 +56,14 @@ error-chain = "0.12.1"
failure = "0.1.5"
regex = "1.2.0"
reqwest = "0.9.19"
serde = "1.0.97"
serde_derive = "1.0.97"
serde = "1.0.98"
serde_derive = "1.0.98"
serde_json = "1.0.40"
termcolor = "1.0.5"
toml_edit = "0.1.4"
atty = "0.2.13"
structopt = "0.2.18"
dirs = "2.0.1"
dirs = "2.0.2"
git2 = "0.9.2"
hex = "0.3.2"
url = "2.0.0"
Expand Down
4 changes: 2 additions & 2 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ image: Visual Studio 2015

environment:
matrix:
- TARGET: x86_64-pc-windows-gnu
- TARGET: i686-pc-windows-gnu
# - TARGET: x86_64-pc-windows-gnu
# - TARGET: i686-pc-windows-gnu
- TARGET: x86_64-pc-windows-msvc
- TARGET: i686-pc-windows-msvc
install:
Expand Down
4 changes: 2 additions & 2 deletions src/errors.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
error_chain! {
foreign_links {
Io(::std::io::Error)#[allow(missing_docs)];
Git(::git2::Error)#[allow(missing_docs)];
Io(::std::io::Error) #[doc = "An error from the std::io module"];
Git(::git2::Error)#[doc = "An error from the git2 crate"];
}

errors {
Expand Down

0 comments on commit 96c5e7a

Please sign in to comment.