Skip to content

Commit 4db3300

Browse files
committed
sort dependencies
1 parent c4440b3 commit 4db3300

File tree

4 files changed

+5
-8
lines changed

4 files changed

+5
-8
lines changed

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ default-members = [
1616

1717
# Dependencies shared between crates
1818
[workspace.dependencies]
19-
shlex = "1"
20-
syn = "2.0"
2119
proc-macro2 = { version = "1", default-features = false }
20+
shlex = "1"
21+
syn = "2.0"
2222

2323
# Config for 'cargo dist'
2424
[workspace.metadata.dist]

bindgen-cli/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ name = "bindgen"
2323
bindgen = { path = "../bindgen", version = "=0.70.1", default-features = false, features = ["__cli", "experimental", "prettyplease"] }
2424
env_logger = { version = "0.10.0", optional = true }
2525
log = { version = "0.4", optional = true }
26-
2726
proc-macro2.workspace = true
2827
shlex.workspace = true
2928

bindgen-tests/Cargo.toml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,11 @@ publish = false
88
bindgen = { path = "../bindgen", features = ["__cli", "experimental"] }
99
owo-colors = "3.5.0"
1010
prettyplease = { version = "0.2.7", features = ["verbatim"] }
11-
similar = { version = "2.2.1", features = ["inline"] }
12-
tempfile = "3"
13-
1411
proc-macro2.workspace = true
1512
shlex.workspace = true
13+
similar = { version = "2.2.1", features = ["inline"] }
1614
syn.workspace = true
15+
tempfile = "3"
1716

1817
[features]
1918
logging = ["bindgen/logging"]

bindgen/Cargo.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,10 @@ clap_complete = { version = "4", optional = true}
3434
itertools = { version = ">=0.10,<0.14", default-features = false }
3535
log = { version = "0.4", optional = true }
3636
prettyplease = { version = "0.2.7", optional = true, features = ["verbatim"] }
37+
proc-macro2.workspace = true
3738
quote = { version = "1", default-features = false }
3839
regex = { version = "1.5.3", default-features = false, features = ["std", "unicode-perl"] }
3940
rustc-hash = "1.0.1"
40-
41-
proc-macro2.workspace = true
4241
shlex.workspace = true
4342
syn = { workspace = true, features = ["full", "extra-traits", "visit-mut"] }
4443

0 commit comments

Comments
 (0)