Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
a1phyr committed Aug 25, 2023
1 parent ac7d070 commit bc4a31c
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 21 deletions.
37 changes: 20 additions & 17 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -217,14 +217,14 @@ wit-component = "0.13.2"

# Non-Bytecode Alliance maintained dependencies:
# --------------------------
object = { version = "0.31.1", default-features = false, features = ['read_core', 'elf', 'std'] }
gimli = { version = "0.27.0", default-features = false, features = ['read', 'std'] }
object = { version = "0.32", default-features = false, features = ['read_core', 'elf', 'std'] }
gimli = { version = "0.28.0", default-features = false, features = ['read', 'std'] }
anyhow = "1.0.22"
windows-sys = "0.48.0"
env_logger = "0.10"
log = { version = "0.4.8", default-features = false }
clap = { version = "4.3.12", features = ["color", "suggestions", "derive"] }
hashbrown = "0.13.2"
hashbrown = { version = "0.14", default-features = false }
capstone = "0.9.0"
once_cell = "1.12.0"
smallvec = { version = "1.6.1", features = ["union"] }
Expand Down
6 changes: 6 additions & 0 deletions cranelift/filetests/src/test_unwind.rs
Original file line number Diff line number Diff line change
Expand Up @@ -562,9 +562,15 @@ mod systemv {
ArgsSize { size } => {
writeln!(w, " DW_CFA_GNU_args_size ({})", size)?;
}
NegateRaState => {
writeln!(w, " DW_CFA_AARCH64_negate_ra_state")?;
}
Nop => {
writeln!(w, " DW_CFA_nop")?;
}
_ => {
writeln!(w, " DW_CFA_<unknown>")?;
}
},
}
}
Expand Down
2 changes: 1 addition & 1 deletion crates/jit/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ cfg-if = { workspace = true }
gimli = { workspace = true }
object = { workspace = true }
serde = { version = "1.0.94", features = ["derive"] }
addr2line = { version = "0.20.0", default-features = false }
addr2line = { version = "0.21.0", default-features = false }
bincode = "1.2.1"
rustc-demangle = "0.1.16"
cpp_demangle = "0.3.2"
Expand Down

0 comments on commit bc4a31c

Please sign in to comment.