Skip to content

Commit 3cdecdb

Browse files
authored
Merge pull request #508 from obeli-sk/rust-1.95
rust 1.95
2 parents e9c3640 + 6421370 commit 3cdecdb

13 files changed

Lines changed: 38 additions & 38 deletions

File tree

Cargo.lock

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

crates/testing/component-builder/src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -281,13 +281,13 @@ fn run_cargo_build(
281281
let target = dst_target_dir
282282
.join(tripple)
283283
.join(profile)
284-
.join(format!("{name_snake_case}.wasm",));
284+
.join(format!("{name_snake_case}.wasm"));
285285
assert!(target.exists(), "Target path must exist: {target:?}");
286286
if is_transformation_to_wasm_component_needed(tripple) {
287287
let target_transformed = dst_target_dir
288288
.join(tripple)
289289
.join(profile)
290-
.join(format!("{name_snake_case}_component.wasm",));
290+
.join(format!("{name_snake_case}_component.wasm"));
291291
let mut cmd = Command::new("wasm-tools");
292292
cmd.arg("component")
293293
.arg("new")

crates/testing/db-tests/tests/deployment_pagination.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ async fn lock_execution(
8181
let component_id = ComponentId::dummy_activity();
8282
let executor_id = ExecutorId::generate();
8383
let run_id = RunId::generate();
84-
let lock_expiry = Duration::from_secs(60);
84+
let lock_expiry = Duration::from_mins(1);
8585

8686
let locked = db_connection
8787
.lock_one(

crates/testing/db-tests/tests/lifecycle.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1996,7 +1996,7 @@ async fn pause_and_unpause_should_work(database: Database) {
19961996
let api_conn = db_pool.external_api_conn().await.unwrap();
19971997

19981998
let execution_id = ExecutionId::generate();
1999-
let original_scheduled_at = sim_clock.now() + Duration::from_secs(60);
1999+
let original_scheduled_at = sim_clock.now() + Duration::from_mins(1);
20002000
// Create with a future scheduled time
20012001
db_connection
20022002
.create(CreateRequest {
@@ -2475,7 +2475,7 @@ async fn pause_with_pending_delay_then_response_then_unpause_should_be_pending(d
24752475

24762476
// Submit delay request
24772477
let delay_id = DelayId::new(&execution_id, &join_set_id);
2478-
let delay_duration = Duration::from_secs(60);
2478+
let delay_duration = Duration::from_mins(1);
24792479
db_connection
24802480
.append(
24812481
execution_id.clone(),

crates/testing/test-utils/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ where
5656
}
5757

5858
// target
59-
write!(&mut writer, " Target({}) ", metadata.target(),)?;
59+
write!(&mut writer, " Target({}) ", metadata.target())?;
6060

6161
// Format all the spans in the event's span context.
6262
if let Some(scope) = ctx.event_scope() {

crates/wasm-workers/src/registry.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ impl ComponentConfigRegistry {
9090
// verify that the component is not already present by name
9191
if self.inner.names_to_components.contains_key(name) {
9292
return Err(ComponentInsertionError(
93-
format!("component with name `{name}` is already registered",).into(),
93+
format!("component with name `{name}` is already registered").into(),
9494
));
9595
}
9696

crates/wasm-workers/src/webhook/webhook_trigger.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2144,7 +2144,7 @@ pub(crate) mod tests {
21442144
iterations: u32,
21452145
expected_status_code: u16,
21462146
) -> String {
2147-
let resp = reqwest::get(format!("http://{server_addr}/fibo/{n}/{iterations}",))
2147+
let resp = reqwest::get(format!("http://{server_addr}/fibo/{n}/{iterations}"))
21482148
.await
21492149
.unwrap();
21502150
assert_eq!(resp.status().as_u16(), expected_status_code);

dev-deps.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ litecli Version: 1.12.3
55
nixpkgs-fmt 1.3.0
66
pkg-config 0.29.2
77
libprotoc 34.0
8-
rustc 1.94.0 (4a4ef493e 2026-03-02)
9-
wasm-tools 1.245.1
10-
wasmtime 43.0.0
8+
rustc 1.95.0 (59807616e 2026-04-14)
9+
wasm-tools 1.246.2
10+
wasmtime 43.0.1
1111
cargo-zigbuild 0.22.1
1212
litestream v0.5.11
1313
ldd (GNU libc) 2.42

flake.lock

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

rust-toolchain-cross.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[toolchain]
2-
channel = "1.94.0"
2+
channel = "1.95.0"
33
targets = [
44
"wasm32-unknown-unknown",
55
"wasm32-wasip2",

0 commit comments

Comments
 (0)