Skip to content

Commit

Permalink
Update dependencies. Fix #19. (#20)
Browse files Browse the repository at this point in the history
  • Loading branch information
kennytm authored Sep 23, 2017
1 parent b0d606f commit 9b5dfab
Show file tree
Hide file tree
Showing 6 changed files with 106 additions and 70 deletions.
3 changes: 2 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ os:

rust:
- 1.16.0
- 1.20.0
- beta
- nightly

Expand All @@ -32,7 +33,7 @@ install:
- rustc -vV
- cargo -vV

# Install kcov v33.
# Install kcov.
- mkdir -p ~/.cargo/bin
- sh src/install_kcov.sh
- export PATH=$HOME/.local/bin:$HOME/.cargo/bin:$HOME/Library/Python/2.7/bin:$PATH
Expand Down
159 changes: 97 additions & 62 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cargo-kcov"
version = "0.4.1"
version = "0.4.2"
authors = ["kennytm <[email protected]>"]
description = "Cargo subcommand to run kcov to get coverage report on Linux"
repository = "https://github.com/kennytm/cargo-kcov"
Expand All @@ -11,12 +11,12 @@ license = "MIT"
travis-ci = { repository = "kennytm/cargo-kcov" }

[dependencies]
clap = "2.23"
clap = "2.26"
shlex = "0.1"
term = "0.4"
serde_json = "0.9"
serde_json = "1"
regex = "0.2"
open = "1.2"
open = "1"

[dev-dependencies]
rquery = "0.3"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ $ cargo install cargo-kcov
Options
-------

cargo-kcov 0.4.0
cargo-kcov 0.4.2
Generate coverage report via kcov

USAGE:
Expand Down
2 changes: 1 addition & 1 deletion src/install_kcov.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

set -eu

KCOV_VERSION=33
KCOV_VERSION=34

rm -rf v${KCOV_VERSION}.tar.gz kcov-${KCOV_VERSION}/

Expand Down
2 changes: 1 addition & 1 deletion src/target_finder.rs
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ pub fn find_test_targets<I, E>(target_folder: &Path, filter: I) -> Result<Vec<Pa
}.unwrap();

// lint suppressed: https://github.com/Manishearth/rust-clippy/issues/1684
#[allow(redundant_closure_call)]
#[cfg_attr(feature = "cargo-clippy", allow(redundant_closure_call))]
let result = (|| {
let mut result = Vec::new();

Expand Down

0 comments on commit 9b5dfab

Please sign in to comment.