mirror of
https://github.com/martinvonz/jj.git
synced 2024-11-29 02:54:04 +00:00
cargo: sort dependencies in lexicographical order
This should help future cargo add.
This commit is contained in:
parent
329720821b
commit
7ebffe8e6f
2 changed files with 7 additions and 7 deletions
|
@ -41,10 +41,11 @@ clap_mangen = "0.2.10"
|
|||
config = { version = "0.13.3", default-features = false, features = ["toml"] }
|
||||
crossterm = { version = "0.26", default-features = false }
|
||||
dirs = "4.0.0"
|
||||
git2 = "0.16.1"
|
||||
esl01-renderdag = "0.3.0"
|
||||
git2 = "0.16.1"
|
||||
glob = "0.3.1"
|
||||
hex = "0.4.3"
|
||||
indexmap = "1.9.2"
|
||||
itertools = "0.10.5"
|
||||
jujutsu-lib = { version = "=0.7.0", path = "lib", default-features = false }
|
||||
maplit = "1.0.2"
|
||||
|
@ -58,12 +59,11 @@ slab = "0.4.8"
|
|||
strsim = "0.10.0"
|
||||
tempfile = "3.4.0"
|
||||
textwrap = "0.16.0"
|
||||
timeago = { version = "0.4.1", default-features = false }
|
||||
thiserror = "1.0.40"
|
||||
timeago = { version = "0.4.1", default-features = false }
|
||||
toml_edit = { version = "0.19.8", features = ["serde"] }
|
||||
tracing = "0.1.37"
|
||||
tracing-subscriber = { version = "0.3.16", default-features = false, features = ["std", "ansi", "env-filter", "fmt"] }
|
||||
indexmap = "1.9.2"
|
||||
toml_edit = { version = "0.19.8", features = ["serde"] }
|
||||
|
||||
[target.'cfg(unix)'.dependencies]
|
||||
libc = { version = "0.2.140" }
|
||||
|
|
|
@ -19,8 +19,8 @@ version_check = "0.9.4"
|
|||
[dependencies]
|
||||
backoff = "0.4.0"
|
||||
blake2 = "0.10.6"
|
||||
bytes = "1.4.0"
|
||||
byteorder = "1.4.3"
|
||||
bytes = "1.4.0"
|
||||
chrono = { version = "0.4.24", default-features = false, features = ["std", "clock"] }
|
||||
config = { version = "0.13.3", default-features = false, features = ["toml"] }
|
||||
digest = "0.10.6"
|
||||
|
@ -31,6 +31,7 @@ maplit = "1.0.2"
|
|||
once_cell = "1.17.1"
|
||||
pest = "2.5.6"
|
||||
pest_derive = "2.5.6"
|
||||
prost = "0.11.8"
|
||||
rand = "0.8.5"
|
||||
rand_chacha = "0.3.1"
|
||||
regex = "1.7.2"
|
||||
|
@ -38,10 +39,9 @@ serde_json = "1.0.94"
|
|||
tempfile = "3.4.0"
|
||||
thiserror = "1.0.40"
|
||||
thrift = { version = "0.17.0", default-features = false, optional = true }
|
||||
tracing = "0.1.37"
|
||||
whoami = "1.4.0"
|
||||
zstd = "0.12.3"
|
||||
tracing = "0.1.37"
|
||||
prost = "0.11.8"
|
||||
|
||||
[dev-dependencies]
|
||||
assert_matches = "1.5.0"
|
||||
|
|
Loading…
Reference in a new issue