forked from taiki-e/cargo-llvm-cov
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
50 lines (45 loc) · 1.26 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
[package]
name = "cargo-llvm-cov"
version = "0.1.7"
authors = ["Taiki Endo <[email protected]>"]
edition = "2018"
rust-version = "1.54"
license = "Apache-2.0 OR MIT"
repository = "https://github.com/taiki-e/cargo-llvm-cov"
keywords = ["cargo", "coverage", "subcommand", "testing"]
categories = ["command-line-utilities", "development-tools", "development-tools::cargo-plugins", "development-tools::testing"]
exclude = ["/.*", "/tools"]
description = """
Cargo subcommand to easily use LLVM source-based code coverage (-Z instrument-coverage).
"""
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
[workspace]
resolver = "2"
[dependencies]
anyhow = "1.0.34"
atty = "0.2.11"
camino = "1.0.3"
cargo_metadata = "0.14"
clap = "=3.0.0-beta.4"
duct = "0.13.1"
fs-err = "2.5"
glob = "0.3"
home = "0.5"
is_executable = "1"
opener = "0.5"
regex = { version = "1.3", default-features = false, features = ["perf", "std"] }
rustc-demangle = "0.1.21"
serde = { version = "1.0.103", features = ["derive"] }
serde_json = "1"
shell-escape = "0.1.5"
termcolor = "1.1"
walkdir = "2"
# This is needed until https://github.com/clap-rs/clap/pull/2706 is released.
clap_derive = "=3.0.0-beta.4"
[dev-dependencies]
easy-ext = "1"
itertools = "0.10"
once_cell = "1"
rand = "0.8"
tempfile = "3"