Skip to content

Commit 49e5f7e

Browse files
authored
deps: bump cranelift, gimli and toml dependencies (#6238)
* deps: bump cranelift and gimli dependencies * use new Gimli crate constant * drop unnecessary caret requirements (default) * bump toml to 1.0.3
1 parent aab2ff3 commit 49e5f7e

File tree

4 files changed

+67
-63
lines changed

4 files changed

+67
-63
lines changed

Cargo.lock

Lines changed: 55 additions & 49 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ cargo_metadata = "0.23.1"
118118
cbindgen = { version = "0.29", default-features = false }
119119
cc = "1.2.47"
120120
cfg-if = "1.0"
121-
chrono = { version = "^0.4.38", default-features = false }
121+
chrono = { version = "0.4.38", default-features = false }
122122
ciborium = "0.2.2"
123123
clap = { version = "4.5.53", default-features = false }
124124
clap_builder = { version = "4.5.53" }
@@ -132,11 +132,11 @@ comfy-table = "7.2.1"
132132
compiletest_rs = "0.11.2"
133133
console = "0.16.1"
134134
console-subscriber = "0.5.0"
135-
cooked-waker = "^5"
135+
cooked-waker = "5"
136136
corosensei = "0.3.0"
137-
cranelift-codegen = { version = "=0.128.3", default-features = false }
138-
cranelift-entity = { version = "=0.128.3", default-features = false }
139-
cranelift-frontend = { version = "=0.128.3", default-features = false }
137+
cranelift-codegen = { version = "=0.129.0", default-features = false }
138+
cranelift-entity = { version = "=0.129.0", default-features = false }
139+
cranelift-frontend = { version = "=0.129.0", default-features = false }
140140
criterion = { version = "0.8.1", default-features = false }
141141
crossbeam-channel = "0.5.15"
142142
crossbeam-queue = "0.3.8"
@@ -162,7 +162,7 @@ fs_extra = { version = "1.3.0" }
162162
futures = "0.3.30"
163163
futures-util = { version = "0.3.31" }
164164
getrandom = "0.4.1"
165-
gimli = { version = "0.32.3" }
165+
gimli = { version = "0.33.0" }
166166
git-version = "0.3.9"
167167
glob = "0.3"
168168
graphql-ws-client = "0.12.0"
@@ -247,7 +247,7 @@ semver = "1.0"
247247
serde = { version = "1", default-features = false }
248248
serde-wasm-bindgen = "0.6.5"
249249
serde_bytes = { version = "0.11" }
250-
serde_derive = "^1"
250+
serde_derive = "1"
251251
serde_json = { version = "1" }
252252
serde_path_to_error = "0.1.14"
253253
serde_yaml = { version = "0.9.34" }
@@ -272,7 +272,7 @@ tokio-serde = "0.9"
272272
tokio-stream = "0.1"
273273
tokio-tungstenite = { version = "0.28.0" }
274274
tokio-util = "0.7.8"
275-
toml = { version = "0.9.8", features = ["preserve_order"] }
275+
toml = { version = "1.0.3", features = ["preserve_order"] }
276276
tower = "0.5.2"
277277
tower-http = "0.6.7"
278278
tracing = { version = "0.1", default-features = false }
@@ -285,7 +285,7 @@ uniffi = "0.31.0"
285285
unix_mode = "0.1.3"
286286
ureq = "3.1.4"
287287
url = "2.5"
288-
urlencoding = "^2"
288+
urlencoding = "2"
289289
uuid = { version = "1", default-features = false }
290290
wai-bindgen-gen-core = { version = "0.2.1", default-features = false }
291291
wai-bindgen-gen-rust = { version = "0.2.1", default-features = false }
@@ -317,7 +317,7 @@ wcgi = "0.3.0"
317317
wcgi-host = "0.3.0"
318318
web-sys = "0.3.64"
319319
web-time = "1.1"
320-
weezl = "^0.1"
320+
weezl = "0.1"
321321
which = "8.0.0"
322322
windows-sys = { version = "0.61.2", default-features = false }
323323
xxhash-rust = { version = "0.8.10", default-features = false }

lib/compiler-singlepass/src/machine_riscv.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6320,8 +6320,7 @@ impl Machine for MachineRiscv {
63206320
));
63216321
instructions.push((
63226322
instruction_offset,
6323-
// TODO: use RiscV::FP: https://github.com/gimli-rs/gimli/pull/802
6324-
CallFrameInstruction::Offset(RiscV::X8, -(up_to_sp as i32)),
6323+
CallFrameInstruction::Offset(RiscV::FP, -(up_to_sp as i32)),
63256324
));
63266325
}
63276326
UnwindOps::DefineNewFrame => {

lib/compiler-singlepass/src/riscv_decl.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -152,8 +152,7 @@ impl AbstractReg for GPR {
152152
GPR::X5 => RiscV::X5,
153153
GPR::X6 => RiscV::X6,
154154
GPR::X7 => RiscV::X7,
155-
// TODO: use new constant: https://github.com/gimli-rs/gimli/pull/802
156-
GPR::Fp => RiscV::X8,
155+
GPR::Fp => RiscV::FP,
157156
GPR::X9 => RiscV::X9,
158157
GPR::X10 => RiscV::X10,
159158
GPR::X11 => RiscV::X11,

0 commit comments

Comments
 (0)