-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
68 lines (62 loc) · 1.96 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
[package]
name = "lcov2xml"
version = "1.0.5"
edition = "2021"
license = "Apache-2.0"
description = "convert LCOV info file to cobertura XML format"
repository = "https://github.com/mike-kfed/lcov2cobertura"
keywords = ["coverage", "gitlab", "cobertura", "lcov"]
categories = ["command-line-utilities"]
rust-version = "1.73"
[workspace]
[dependencies]
anyhow = "1.0.86"
clap = { version = "4.4", features = ["derive"]}
lcov = "0.8.1"
lcov2cobertura = { path = "lcov2cobertura", version = "1.0.2" }
[dev-dependencies]
quick-xml = "0.31.0"
[profile.release]
strip = "symbols"
[lints.rust]
unsafe_code = "forbid"
warnings = "deny"
ambiguous-associated-items = "forbid"
cenum-impl-drop-cast = "forbid"
coherence-leak-check = "forbid"
conflicting-repr-hints = "forbid"
const-evaluatable-unchecked = "forbid"
deprecated-cfg-attr-crate-type-name = "forbid"
deref-into-dyn-supertrait = "forbid"
forbidden-lint-groups = "allow"
ill-formed-attribute-input = "forbid"
indirect-structural-match = "forbid"
invalid-doc-attributes = "forbid"
invalid-type-param-default = "forbid"
late-bound-lifetime-arguments = "forbid"
legacy-derive-helpers = "forbid"
macro-expanded-macro-exports-accessed-by-absolute-paths = "forbid"
missing-fragment-specifier = "forbid"
order-dependent-trait-objects = "forbid"
patterns-in-fns-without-body = "forbid"
pointer-structural-match = "forbid"
private_bounds = "forbid"
private_interfaces = "forbid"
proc-macro-back-compat = "forbid"
proc-macro-derive-resolution-fallback = "forbid"
pub-use-of-private-extern-crate = "forbid"
semicolon-in-expressions-from-macros = "forbid"
soft-unstable = "forbid"
uninhabited-static = "forbid"
unstable-name-collisions = "forbid"
unsupported-calling-conventions = "forbid"
where-clauses-object-safety = "forbid"
missing_docs = "deny"
rust-2021-compatibility = "deny"
rust-2018-idioms = "deny"
nonstandard-style = "deny"
[lints.clippy]
suspicious = "forbid"
style = "forbid"
complexity = "forbid"
perf = "forbid"