Skip to content

Commit

Permalink
Merge pull request #104 from jfrimmel/cargo.toml-cleanup
Browse files Browse the repository at this point in the history
Clean up the `Cargo.toml` manifest
  • Loading branch information
jfrimmel authored Sep 23, 2024
2 parents b889e46 + 6569c2b commit b03b4d7
Showing 1 changed file with 12 additions and 38 deletions.
50 changes: 12 additions & 38 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,46 +7,20 @@ 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",
]
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"]
[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"] }

[dependencies.serde-xml-rs]
version = "0.5"
default-features = false

[dependencies.colored]
version = "1.9.4"

[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"
[dev-dependencies]
assert_cmd = "2"
predicates = "2"

0 comments on commit b03b4d7

Please sign in to comment.