-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
107 additions
and
103 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "cargo-cov" | ||
version = "0.0.1" | ||
version = "0.0.2" | ||
authors = ["kennytm <[email protected]>"] | ||
description = "Collect source coverage via LLVM-GCOV (⚠ not fully tested, may eat your laundry)" | ||
build = "build.rs" | ||
|
@@ -10,34 +10,36 @@ license = "MIT" | |
keywords = ["cargo", "subcommand", "coverage", "gcov", "lcov"] | ||
categories = ["command-line-utilities", "development-tools", "development-tools::cargo-plugins", "development-tools::testing"] | ||
|
||
[badge] | ||
maintenance = { status = "experimental" } | ||
|
||
# Note: `pest` (via `tera`) is licensed in MPL-2.0, and `unidecode` (via `slug` via `tera`) in BSD-3. | ||
# According to https://softwareengineering.stackexchange.com/q/317944, this should not cause any | ||
# legal problem for keeping `cargo-cov` itself as MIT, as MPL-2.0 is non-viral. | ||
|
||
[dependencies] | ||
cov = { version = "0.0", path = "../cov", features = ["serde_json"] } | ||
|
||
bitflags = { version = "0.9", default-features = false } | ||
clap = "2.24" | ||
bitflags = { version = "1", default-features = false } | ||
clap = "2" | ||
copy_dir = "0.1" | ||
either = "1.1" # <- added just because .flat_map(|a| a) is not clone | ||
env_logger = "0.4" | ||
error-chain = "0.10" | ||
error-chain = "0.10" # <- waits for tera to update. | ||
fs2 = "0.4" | ||
glob = "0.2" | ||
lazy_static = "0.2" | ||
log = { version = "0.3", features = ["release_max_level_warn"] } | ||
md5 = "0.3" # <- md5 needed for coveralls | ||
natord = "1.0" | ||
open = "1.2" | ||
natord = "1" | ||
open = "1" | ||
rand = "0.3" | ||
rustc-demangle = "0.1" | ||
serde = "1.0" | ||
serde_derive = "1.0" | ||
serde_json = "1.0" | ||
serde = "1" | ||
serde_derive = "1" | ||
serde_json = "1" | ||
shell-escape = "0.1" | ||
tempdir = "0.3" | ||
tera = "0.10" | ||
termcolor = "0.3" | ||
toml = "0.4" | ||
walkdir = "1.0" | ||
walkdir = "2" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "cov" | ||
version = "0.0.1" | ||
version = "0.0.2" | ||
authors = ["kennytm <[email protected]>"] | ||
description = "gcov format (*.gcda/*.gcno) parser and analyzer in pure Rust" | ||
documentation = "https://docs.rs/cov" | ||
|
@@ -9,20 +9,23 @@ license = "MIT" | |
keywords = ["coverage", "gcov", "lcov"] | ||
categories = ["parsing"] | ||
|
||
[badge] | ||
maintenance = { status = "experimental" } | ||
|
||
[dependencies] | ||
bitflags = { version = "0.9", default-features = false } # <- avoid building example_generated by default | ||
byteorder = "1.0" | ||
error-chain = { version = "0.10", default-features = false } | ||
bitflags = { version = "1", default-features = false } # <- avoid building example_generated by default | ||
byteorder = "1" | ||
error-chain = { version = "0.10", default-features = false } # <- waits for tera to update. | ||
fixedbitset = "0.1" | ||
log = { version = "0.3", features = ["release_max_level_warn"] } | ||
num-traits = "0.1" | ||
petgraph = { version = "0.4", default-features = false } | ||
serde = { version = "1.0", optional = true, features = ["derive"] } | ||
serde_json = { version = "1.0", optional = true } | ||
serde = { version = "1", optional = true, features = ["derive"] } | ||
serde_json = { version = "1", optional = true } | ||
shawshank = "0.2" | ||
|
||
[dev-dependencies] | ||
clap = "2.25" | ||
clap = "2" | ||
diff = "0.1" | ||
env_logger = "0.4" | ||
termcolor = "0.3" | ||
|
Oops, something went wrong.