Skip to content

Commit

Permalink
sort dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
nyurik authored and pvdrz committed Dec 1, 2024
1 parent 6f0b754 commit d5b72c4
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 8 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ default-members = [

# Dependencies shared between crates
[workspace.dependencies]
shlex = "1"
syn = "2.0"
proc-macro2 = { version = "1", default-features = false }
shlex = "1"
syn = "2.0"

# Config for 'cargo dist'
[workspace.metadata.dist]
Expand Down
1 change: 0 additions & 1 deletion bindgen-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ name = "bindgen"
bindgen = { path = "../bindgen", version = "=0.70.1", default-features = false, features = ["__cli", "experimental", "prettyplease"] }
env_logger = { version = "0.10.0", optional = true }
log = { version = "0.4", optional = true }

proc-macro2.workspace = true
shlex.workspace = true

Expand Down
5 changes: 2 additions & 3 deletions bindgen-tests/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,11 @@ publish = false
bindgen = { path = "../bindgen", features = ["__cli", "experimental"] }
owo-colors = "3.5.0"
prettyplease = { version = "0.2.7", features = ["verbatim"] }
similar = { version = "2.2.1", features = ["inline"] }
tempfile = "3"

proc-macro2.workspace = true
shlex.workspace = true
similar = { version = "2.2.1", features = ["inline"] }
syn.workspace = true
tempfile = "3"

[features]
logging = ["bindgen/logging"]
Expand Down
3 changes: 1 addition & 2 deletions bindgen/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,10 @@ clap_complete = { version = "4", optional = true}
itertools = { version = ">=0.10,<0.14", default-features = false }
log = { version = "0.4", optional = true }
prettyplease = { version = "0.2.7", optional = true, features = ["verbatim"] }
proc-macro2.workspace = true
quote = { version = "1", default-features = false }
regex = { version = "1.5.3", default-features = false, features = ["std", "unicode-perl"] }
rustc-hash = "1.0.1"

proc-macro2.workspace = true
shlex.workspace = true
syn = { workspace = true, features = ["full", "extra-traits", "visit-mut"] }

Expand Down

0 comments on commit d5b72c4

Please sign in to comment.