Skip to content

Commit a0e32b7

Browse files
committed
Update to rust 1.84
1 parent d64d14a commit a0e32b7

File tree

5 files changed

+18
-15
lines changed

5 files changed

+18
-15
lines changed

.github/workflows/daphneci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
uses: actions-rs/toolchain@v1
2020
with:
2121
profile: minimal
22-
toolchain: 1.83.0
22+
toolchain: 1.84.0
2323
components: clippy, rustfmt
2424
override: true
2525
- name: Machete

Cargo.lock

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

crates/daphne-server/src/storage_proxy_connection/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ pub struct RequestBuilder<'d, B: DurableMethod, P: AsRef<[u8]>> {
5757
request: DurableRequest<P>,
5858
}
5959

60-
impl<'d, B: DurableMethod + Debug, P: AsRef<[u8]>> RequestBuilder<'d, B, P> {
60+
impl<B: DurableMethod + Debug, P: AsRef<[u8]>> RequestBuilder<'_, B, P> {
6161
#[tracing::instrument(skip_all, fields(path = ?self.path))]
6262
pub async fn send<R>(self) -> Result<R, Error>
6363
where

crates/daphne-worker/src/storage/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ pub struct RequestBuilder<'d, B: DurableMethod, P: AsRef<[u8]>> {
4949
request: DurableRequest<P>,
5050
}
5151

52-
impl<'d, B: DurableMethod + Debug, P: AsRef<[u8]>> RequestBuilder<'d, B, P> {
52+
impl<B: DurableMethod + Debug, P: AsRef<[u8]>> RequestBuilder<'_, B, P> {
5353
#[tracing::instrument(skip_all, fields(path = ?self.path))]
5454
pub async fn send<R>(self) -> Result<R, Error>
5555
where

crates/daphne/src/roles/helper/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ pub async fn handle_agg_job_init_req<A: DapHelper + Sync>(
6767

6868
/// Handle a request for an aggregate share. This is called by the Leader to complete a
6969
/// collection job.
70-
pub async fn handle_agg_share_req<'req, A: DapHelper>(
70+
pub async fn handle_agg_share_req<A: DapHelper>(
7171
aggregator: &A,
7272
req: DapRequest<AggregateShareReq>,
7373
) -> Result<DapResponse, DapError> {

0 commit comments

Comments
 (0)