Skip to content

Commit

Permalink
Fix the alphabetical sorting order of the dependencies in Cargo.toml
Browse files Browse the repository at this point in the history
This was done to restore the alphabetical sorting order using the `sort`
command with `LC_ALL=C` (we ignored it when adding three new
dependencies due to the version alignment).

Signed-off-by: Michael Weiss <michael.weiss@eviden.com>
  • Loading branch information
primeos-work committed Jan 5, 2024
1 parent 84196b4 commit 43f9175
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ lazy_static = "1"
parse-display = "0.8"
pom = "3"
ptree = { version = "0.4", default-features = false }
rand = "0.8"
rayon = "1"
regex = "1"
reqwest = { version = "0.11", features = [ "stream" ] }
Expand All @@ -70,16 +71,15 @@ tar = "0.4"
terminal_size = "0.3"
tokio = { version = "1", features = ["macros", "fs", "process", "io-util", "time"] }
tokio-stream = "0.1"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
typed-builder = "0.18"
unindent = "0.2"
url = { version = "2", features = ["serde"] }
uuid = { version = "1", features = ["serde", "v4"] }
walkdir = "2"
which = "5"
xdg = "2"
rand = "0.8"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }

[dev-dependencies]
toml = "0.8"
Expand Down

0 comments on commit 43f9175

Please sign in to comment.