Skip to content

Commit 444e146

Browse files
author
Stephan Dilly
committed
cargo-sort
1 parent 9038b1d commit 444e146

File tree

5 files changed

+45
-45
lines changed

5 files changed

+45
-45
lines changed

Cargo.toml

Lines changed: 29 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ authors = ["Stephan Dilly <[email protected]>"]
55
description = "blazing fast terminal-ui for git"
66
edition = "2018"
77
rust-version = "1.50"
8-
exclude = [".github/*",".vscode/*","assets/*"]
8+
exclude = [".github/*", ".vscode/*", "assets/*"]
99
homepage = "https://github.com/extrawurst/gitui"
1010
repository = "https://github.com/extrawurst/gitui"
1111
readme = "README.md"
@@ -20,36 +20,36 @@ keywords = [
2020
]
2121

2222
[dependencies]
23-
scopetime = { path = "./scopetime", version = "0.1" }
23+
anyhow = "1.0"
2424
asyncgit = { path = "./asyncgit", version = "0.18", default-features = false }
25-
filetreelist = { path = "./filetreelist", version = "0.4" }
26-
crossterm = { version = "0.20", features = [ "serde" ] }
25+
backtrace = "0.3"
26+
bitflags = "1.2"
27+
bugreport = "0.4"
28+
bytesize = { version = "1.0", default-features = false }
29+
chrono = "0.4"
2730
clap = { version = "2.33", default-features = false }
28-
tui = { version = "0.16", default-features = false, features = ['crossterm', 'serde'] }
29-
bytesize = { version = "1.0", default-features = false}
31+
crossbeam-channel = "0.5"
32+
crossterm = { version = "0.20", features = [ "serde" ] }
33+
dirs-next = "2.0"
34+
easy-cast = "0.4"
35+
filetreelist = { path = "./filetreelist", version = "0.4" }
36+
fuzzy-matcher = "0.3"
37+
gh-emoji = { version = "1.0.6", optional = true }
3038
itertools = "0.10"
31-
rayon-core = "1.9"
39+
lazy_static = "1.4"
3240
log = "0.4"
33-
simplelog = { version = "0.11", default-features = false }
34-
dirs-next = "2.0"
35-
crossbeam-channel = "0.5"
36-
scopeguard = "1.1"
37-
bitflags = "1.2"
38-
chrono = "0.4"
39-
backtrace = "0.3"
41+
rayon-core = "1.9"
4042
ron = "0.7"
43+
scopeguard = "1.1"
44+
scopetime = { path = "./scopetime", version = "0.1" }
4145
serde = "1.0"
42-
anyhow = "1.0"
43-
unicode-width = "0.1"
46+
simplelog = { version = "0.11", default-features = false }
47+
syntect = { version = "4.5", default-features = false, features = ["metadata", "default-fancy"] }
4448
textwrap = "0.14"
45-
unicode-truncate = "0.2"
49+
tui = { version = "0.16", default-features = false, features = ['crossterm', 'serde'] }
4650
unicode-segmentation = "1.7"
47-
easy-cast = "0.4"
48-
bugreport = "0.4"
49-
lazy_static = "1.4"
50-
syntect = { version = "4.5", default-features = false, features = ["metadata", "default-fancy"]}
51-
gh-emoji = { version = "1.0.6", optional = true }
52-
fuzzy-matcher = "0.3"
51+
unicode-truncate = "0.2"
52+
unicode-width = "0.1"
5353

5454
[target.'cfg(all(target_family="unix",not(target_os="macos")))'.dependencies]
5555
which = "4.1"
@@ -65,16 +65,16 @@ pretty_assertions = "1.0"
6565
maintenance = { status = "actively-developed" }
6666

6767
[features]
68-
default=["ghemoji", "trace-libgit"]
69-
ghemoji=["gh-emoji"]
70-
timing=["scopetime/enabled"]
71-
trace-libgit=["asyncgit/trace-libgit"]
68+
default =["ghemoji", "trace-libgit"]
69+
ghemoji =["gh-emoji"]
70+
timing =["scopetime/enabled"]
71+
trace-libgit =["asyncgit/trace-libgit"]
7272

7373
[workspace]
74-
members=[
74+
members =[
7575
"asyncgit",
76-
"scopetime",
7776
"filetreelist",
77+
"scopetime",
7878
]
7979

8080
[profile.release]

asyncgit/Cargo.toml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -8,30 +8,30 @@ homepage = "https://github.com/extrawurst/gitui"
88
repository = "https://github.com/extrawurst/gitui"
99
readme = "README.md"
1010
license = "MIT"
11-
categories = ["concurrency","asynchronous"]
11+
categories = ["concurrency", "asynchronous"]
1212
keywords = ["git"]
1313

1414
[dependencies]
15-
scopetime = { path = "../scopetime", version = "0.1" }
15+
crossbeam-channel = "0.5"
16+
easy-cast = "0.4"
1617
git2 = "0.13"
18+
log = "0.4"
1719
# git2 = { path = "../../extern/git2-rs", features = ["vendored-openssl"]}
1820
# git2 = { git="https://github.com/extrawurst/git2-rs.git", rev="fc13dcc", features = ["vendored-openssl"]}
1921
# pinning to vendored openssl, using the git2 feature this gets lost with new resolver
20-
openssl-sys = { version = '0.9', features= ["vendored"] }
22+
openssl-sys = { version = '0.9', features = ["vendored"] }
2123
rayon-core = "1.9"
22-
crossbeam-channel = "0.5"
23-
log = "0.4"
24+
scopetime = { path = "../scopetime", version = "0.1" }
2425
thiserror = "1.0"
25-
url = "2.2"
2626
unicode-truncate = "0.2.0"
27-
easy-cast = "0.4"
27+
url = "2.2"
2828

2929
[dev-dependencies]
30-
tempfile = "3.2"
3130
invalidstring = { path = "../invalidstring", version = "0.1" }
32-
serial_test = "0.5.1"
3331
pretty_assertions = "1.0"
32+
serial_test = "0.5.1"
33+
tempfile = "3.2"
3434

3535
[features]
3636
default = ["trace-libgit"]
37-
trace-libgit = []
37+
trace-libgit = []

filetreelist/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ repository = "https://github.com/extrawurst/gitui"
99
readme = "README.md"
1010
license-file = "LICENSE.md"
1111
categories = ["command-line-utilities"]
12-
keywords = ["gui","cli","terminal","ui","tui"]
12+
keywords = ["gui", "cli", "terminal", "ui", "tui"]
1313

1414
[dependencies]
1515
scopetime = { path = "../scopetime", version = "0.1" }
1616
thiserror = "1.0"
1717

1818
[dev-dependencies]
19-
pretty_assertions = "1.0"
19+
pretty_assertions = "1.0"

invalidstring/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ homepage = "https://github.com/extrawurst/gitui"
88
repository = "https://github.com/extrawurst/gitui"
99
readme = "README.md"
1010
license = "MIT"
11-
categories = ["development-tools","development-tools::testing","encoding"]
11+
categories = ["development-tools", "development-tools::testing", "encoding"]
1212
keywords = ["string"]
1313

1414
[dependencies]

scopetime/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ repository = "https://github.com/extrawurst/gitui"
99
license = "MIT"
1010
readme = "README.md"
1111
categories = ["development-tools::profiling"]
12-
keywords = ["profiling","logging"]
12+
keywords = ["profiling", "logging"]
1313

1414
[dependencies]
1515
log = "0.4"
1616

1717
[features]
18-
default=[]
19-
enabled=[]
18+
default =[]
19+
enabled =[]

0 commit comments

Comments
 (0)