-
Notifications
You must be signed in to change notification settings - Fork 16
/
Cargo.toml
29 lines (25 loc) · 850 Bytes
/
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
[package]
name = "cargo-valgrind"
version = "2.2.1"
authors = ["Julian Frimmel <[email protected]>"]
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", "subcommand", "cargo-subcommand", "valgrind", "cli"]
categories = ["development-tools", "development-tools::cargo-plugins"]
exclude = [".github", ".vscode", "CHANGELOG.md", "tests"]
[features]
default = ["textwrap"]
[dependencies]
serde = { version = "1", features = ["derive"] }
serde-xml-rs = { version = "0.5", default-features = false }
colored = "1.9.4"
bytesize = "1"
textwrap = { version = "0.14", optional = true, features = ["terminal_size"] }
[dev-dependencies]
assert_cmd = "2"
predicates = "2"
[profile.release]
lto = true