Skip to content

Commit 34e965d

Browse files
committed
cargo sort
1 parent f4e268f commit 34e965d

File tree

4 files changed

+13
-13
lines changed

4 files changed

+13
-13
lines changed

bindgen-cli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,11 @@ name = "bindgen"
2121

2222
[dependencies]
2323
bindgen = { path = "../bindgen", version = "=0.65.1", features = ["__cli", "experimental"] }
24-
shlex = "1"
2524
clap = { version = "4", features = ["derive"] }
2625
clap_complete = "4"
2726
env_logger = { version = "0.10.0", optional = true }
2827
log = { version = "0.4", optional = true }
28+
shlex = "1"
2929

3030
[features]
3131
default = ["logging", "runtime", "which-rustfmt"]

bindgen-tests/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ publish = false
66

77
[dev-dependencies]
88
bindgen = { path = "../bindgen", features = ["__cli", "experimental"] }
9-
diff = "0.1"
10-
shlex = "1"
119
clap = { version = "4", features = ["derive"] }
1210
clap_complete = "4"
11+
diff = "0.1"
12+
shlex = "1"
1313
tempfile = "3"
1414

1515
[features]

bindgen-tests/tests/expectations/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@ authors = [
1010
edition = "2018"
1111

1212
[dependencies]
13-
objc = "0.2"
1413
block = "0.1"
1514
libloading = "0.7"
15+
objc = "0.2"

bindgen/Cargo.toml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -25,22 +25,22 @@ name = "bindgen"
2525
path = "lib.rs"
2626

2727
[dependencies]
28+
annotate-snippets = { version = "0.9.1", features = ["color"], optional = true }
2829
bitflags = "2.2.1"
2930
cexpr = "0.6"
3031
clang-sys = { version = "1", features = ["clang_6_0"] }
31-
lazycell = "1"
3232
lazy_static = "1"
33+
lazycell = "1"
34+
log = { version = "0.4", optional = true }
3335
peeking_take_while = "0.1.2"
34-
quote = { version = "1", default-features = false }
35-
syn = { version = "2.0", features = ["full", "extra-traits", "visit-mut"]}
36-
regex = { version = "1.5", default-features = false , features = ["std", "unicode"] }
37-
which = { version = "4.2.1", optional = true, default-features = false }
3836
prettyplease = { version = "0.2.0" }
39-
annotate-snippets = { version = "0.9.1", features = ["color"], optional = true }
40-
shlex = "1"
41-
rustc-hash = "1.0.1"
4237
proc-macro2 = { version = "1", default-features = false }
43-
log = { version = "0.4", optional = true }
38+
quote = { version = "1", default-features = false }
39+
regex = { version = "1.5", default-features = false, features = ["std", "unicode"] }
40+
rustc-hash = "1.0.1"
41+
shlex = "1"
42+
syn = { version = "2.0", features = ["full", "extra-traits", "visit-mut"] }
43+
which = { version = "4.2.1", optional = true, default-features = false }
4444

4545
[features]
4646
default = ["logging", "runtime", "which-rustfmt"]

0 commit comments

Comments
 (0)