Skip to content

Commit e07ddbb

Browse files
goffrieConvex, Inc.
authored andcommitted
Upgrade rust to 2026-06-28 (#53783)
GitOrigin-RevId: 76a1295e828e0681cb40c7016da032d96e9df62e
1 parent 800246b commit e07ddbb

3 files changed

Lines changed: 5 additions & 4 deletions

File tree

Cargo.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ tracing-subscriber = { features = [ "env-filter" ], version = "0.3.17" }
3434

3535
[lints.rust]
3636
unused_extern_crates = "warn"
37+
unused_features = "allow"
3738

3839
[lints.clippy]
3940
await_holding_lock = "warn"
@@ -51,3 +52,5 @@ type_complexity = "allow"
5152
upper_case_acronyms = "allow"
5253
useless_format = "allow"
5354
useless_vec = "allow"
55+
collapsible_match = "allow"
56+
chunks_exact_to_as_chunks = "allow"

rust-toolchain

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
[toolchain]
2-
channel = "nightly-2026-02-18"
2+
channel = "nightly-2026-06-28"

src/client/mod.rs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -155,9 +155,7 @@ impl PyConvexClient {
155155
client: instance,
156156
}),
157157
Err(e) => Err(PyException::new_err(format!(
158-
"{}: {}",
159-
"Failed to create PyConvexClient",
160-
&e.to_string()
158+
"Failed to create PyConvexClient: {e}",
161159
))),
162160
}
163161
}

0 commit comments

Comments
 (0)