Skip to content

Commit

Permalink
Update dependency version minimums
Browse files Browse the repository at this point in the history
Technically only proc-macro2 probably needs to be updated but
since no one is really testing with old versions it seems to make
sense to just update them to whatever is current now.

Fixes jam1garner#224.
  • Loading branch information
csnover committed Sep 23, 2023
1 parent bf8c1c5 commit ca5ace6
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
8 changes: 4 additions & 4 deletions binrw/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@ rust-version.workspace = true
version.workspace = true

[dependencies]
array-init = "2.0"
array-init = "2.1.0"
binrw_derive = { path = "../binrw_derive", version = "0.13.0-pre" }
bytemuck = "1.12"
bytemuck = "1.14.0"

[dev-dependencies]
modular-bitfield = "0.11"
trybuild = "1.0"
modular-bitfield = "0.11.2"
trybuild = "1.0.85"

[features]
default = ["std", "verbose-backtrace"]
Expand Down
12 changes: 6 additions & 6 deletions binrw_derive/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,14 @@ version.workspace = true
proc-macro = true

[dependencies]
either = "1.8"
owo-colors = { version = "3", optional = true }
proc-macro2 = { version = "1", features = ["span-locations"] }
quote = "1"
syn = { version = "1", features = ["extra-traits", "fold", "full", "visit"] }
either = "1.9.0"
owo-colors = { version = "3.5.0", optional = true }
proc-macro2 = { version = "1.0.67", features = ["span-locations"] }
quote = "1.0.33"
syn = { version = "1.0.109", features = ["extra-traits", "fold", "full", "visit"] }

[dev-dependencies]
runtime-macros-derive = "0.4.0"
runtime-macros-derive = "0.6.0"

[features]
default = []
Expand Down

0 comments on commit ca5ace6

Please sign in to comment.