forked from xd009642/tarpaulin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
81 lines (72 loc) · 2.08 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
[package]
name = "cargo-tarpaulin"
version = "0.26.1"
authors = ["Daniel McKenna <[email protected]>"]
description = "Cargo-Tarpaulin is a tool to determine code coverage achieved via tests"
repository = "https://github.com/xd009642/tarpaulin"
readme = "README.md"
license = "MIT OR Apache-2.0"
categories = ["development-tools"]
keywords = ["cargo", "cargo-subcommand", "testing"]
edition = "2018"
autotests = false
build = "build.rs"
[[bin]]
name = "cargo-tarpaulin"
[[test]]
name = "integration"
path = "tests/mod.rs"
[dependencies]
cargo_metadata = "0.17"
cfg-if = "1.0.0"
chrono = "0.4"
clap = { version = "4.4.0", features = ["derive"] }
coveralls-api = "0.5.0"
fallible-iterator = "0.3.0"
gimli = "0.28.0"
git2 = "0.18"
humantime-serde = "1"
indexmap = { version = "~1.8", features = ["serde-1"] }
lazy_static = "1.0"
llvm_profparser = { version = "0.3", default-features = false }
object = "0.32"
num_cpus = "1.16.0"
proc-macro2 = { version = "1.0", features = ["span-locations"] }
quick-xml = "0.30"
quote = "1.0"
regex = "1.9"
rustc-demangle = "0.1.23"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
syn = { version = "1.0", features = ["full"] }
toml = "0.7"
tracing = { version = "0.1", default-features = false }
tracing-subscriber = { version = "0.2.25", default-features = false, features = [
"env-filter",
"fmt",
"chrono",
"ansi",
"smallvec",
"tracing-log",
] }
walkdir = "2.4.0"
glob = "0.3.1"
enum-display = "0.1.3"
[target.'cfg(all(target_os = "linux", target_arch = "x86_64"))'.dependencies]
libc = "0.2.94"
nix = {version = "0.27.1", default-features = false, features = ["sched", "signal", "ptrace", "personality"]}
procfs = "0.15"
[features]
default = []
vendored-openssl = ["git2/vendored-openssl"]
[build-dependencies]
rustc_version = "0.4"
[dev-dependencies]
lcov = "0.8.1"
rusty-fork = "0.3.0"
[package.metadata.binstall]
pkg-url = "{ repo }/releases/download/{ version }/cargo-tarpaulin-{ target }.tar.gz"
bin-dir = "cargo-tarpaulin{ binary-ext }"
pkg-fmt = "tgz"
[package.metadata.binstall.overrides.x86_64-pc-windows-msvc]
pkg-fmt = "zip"