Skip to content

Commit

Permalink
Use more concise way of specifying dependencies
Browse files Browse the repository at this point in the history
This makes searching for dependencies in the `Cargo.toml` easier, since
they are more neatly grouped into `[dependencies]`/`[dev-dependencies]`.
  • Loading branch information
jfrimmel committed Sep 23, 2024
1 parent b889e46 commit 4fb4b06
Showing 1 changed file with 10 additions and 24 deletions.
34 changes: 10 additions & 24 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,27 +26,13 @@ exclude = [
[features]
default = ["textwrap"]

[dependencies.serde]
version = "1"
features = ["derive"]

[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"
[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"

0 comments on commit 4fb4b06

Please sign in to comment.