forked from jfrimmel/cargo-valgrind
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
52 lines (44 loc) · 932 Bytes
/
Copy pathCargo.toml
File metadata and controls
52 lines (44 loc) · 932 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
[package]
name = "cargo-valgrind"
version = "2.0.3"
authors = ["Julian Frimmel <julian.frimmel@gmail.com>"]
edition = "2018"
description = "A cargo subcommand for running valgrind"
repository = "https://github.com/jfrimmel/cargo-valgrind"
readme = "README.md"
license = "MIT OR Apache-2.0"
keywords = [
"cargo",
"subcomand",
"cargo-subcommand",
"valgrind",
"cli",
]
categories = [
"development-tools",
"development-tools::cargo-plugins",
]
exclude = [
"CHANGELOG.md",
"tests",
]
[features]
default = ["textwrap"]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde-xml-rs]
version = "0.5"
default-features = false
[dependencies.colored]
version = "2"
[dependencies.bytesize]
version = "1"
[dependencies.textwrap]
version = "0.14"
optional = true
features = ["terminal_size"]
[dev-dependencies.assert_cmd]
version = "2"
[dev-dependencies.predicates]
version = "2"