-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
34 lines (29 loc) · 917 Bytes
/
Cargo.toml
File metadata and controls
34 lines (29 loc) · 917 Bytes
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
[package]
name = "coverage2lcov"
description = "A simple program to generate `lcov` file from data file generated by [coveragepy](https://github.com/nedbat/coveragepy ), when an older version of which does not have `coverage lcov` command."
repository = "https://github.com/yining/coverage2lcov"
keywords = ["coverage", "lcov", "conversion"]
categories = ["development-tools", "command-line-utilities"]
version = "0.1.0"
license = "MIT OR Apache-2.0"
authors = ["Zhang Yining <zhang.yining@gmail.com>"]
edition = "2021"
exclude = [".github/", ".vimrc", ".envrc", ".vscode/", "Makefile"]
[[bin]]
name = "coverage2lcov"
path = "src/main.rs"
[lib]
name = "coverage2lcov"
path = "src/lib.rs"
test = true
doc = true
doctest = true
bench = true
harness = true
edition = "2021"
crate-type = ["lib"]
[dependencies]
regex = "1.5.5"
[dev-dependencies]
assert_cmd = "2.0"
predicates = "2.1"