Skip to content

Commit

Permalink
Version bump dependencies.
Browse files Browse the repository at this point in the history
  • Loading branch information
CensoredUsername committed Sep 27, 2024
1 parent 8601ea3 commit b82f2c1
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 12 deletions.
2 changes: 1 addition & 1 deletion doc/examples/bf-jit/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ name = "bf-jit-aarch64"
path = "src/aarch64.rs"

[dependencies]
itertools = "0.5.*"
itertools = "0.13.0"

[dependencies.dynasmrt]
path = "../../../runtime"
14 changes: 7 additions & 7 deletions plugin/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,18 +18,18 @@ name = "dynasm"
proc-macro = true

[dependencies]
lazy_static = "1"
bitflags = "2"
byteorder = "1"
quote = "1"
proc-macro-error2 = "2.0"
lazy_static = "1.5.0"
bitflags = "2.6.0"
byteorder = "1.5.0"
quote = "1.0.37"
proc-macro-error2 = "2.0.1"

[dependencies.syn]
version = "1"
version = "2.0.77"
features = ["full", "extra-traits"]

[dependencies.proc-macro2]
version = "1.0.26"
version = "1.0.86"

[features]
dynasm_opmap = []
Expand Down
6 changes: 3 additions & 3 deletions runtime/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ license.workspace = true


[dependencies]
memmap2 = "0.9"
byteorder = "1"
fnv = "1.0.3"
memmap2 = "0.9.5"
byteorder = "1.5.0"
fnv = "1.0.7"
dynasm = { version = "=2.0.0", path = "../plugin" }
13 changes: 13 additions & 0 deletions test_aarch64/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
[package]
name = "test_aarch64"
version = "0.1.0"
authors = ["Alexander Stocko <[email protected]>", "CensoredUsername <[email protected]>"]

[dependencies]
itertools = "0.5.*"

[dependencies.dynasm]
path = "../plugin"

[dependencies.dynasmrt]
path = "../runtime"
2 changes: 1 addition & 1 deletion testing/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ authors.workspace = true
edition.workspace = true

[dependencies]
itertools = "0.5.*"
itertools = "0.13.0"

[dependencies.dynasmrt]
path = "../runtime"

0 comments on commit b82f2c1

Please sign in to comment.