Skip to content

Commit 1c6e29f

Browse files
authored
chore(deps): update rust crate alloy to v0.7 (#250)
* chore(deps): update rust crate alloy to v0.7 Signed-off-by: Lorenzo Delgado <[email protected]> * chore(deps): update rust toolchain version to 1.82 Signed-off-by: Lorenzo Delgado <[email protected]> * style(deps): fix benches clippy warning Signed-off-by: Lorenzo Delgado <[email protected]> * chore(deps): update rust toolchain version to 1.83 Signed-off-by: Lorenzo Delgado <[email protected]> --------- Signed-off-by: Lorenzo Delgado <[email protected]>
1 parent f680f4c commit 1c6e29f

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

.github/workflows/tests.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
name: cargo fmt
1313
runs-on: ubuntu-latest
1414
container:
15-
image: rust:1.79-bookworm
15+
image: rust:1.83-bookworm
1616
steps:
1717
- uses: actions/checkout@v3
1818
- run: |
@@ -23,7 +23,7 @@ jobs:
2323
name: cargo clippy
2424
runs-on: ubuntu-latest
2525
container:
26-
image: rust:1.79-bookworm
26+
image: rust:1.83-bookworm
2727
steps:
2828
- uses: actions/checkout@v3
2929
- uses: actions/cache@v3
@@ -47,7 +47,7 @@ jobs:
4747
pull-requests: write
4848
actions: read
4949
container:
50-
image: rust:1.79-bookworm
50+
image: rust:1.83-bookworm
5151
steps:
5252
- uses: actions/checkout@v3
5353
- uses: actions/cache@v3
@@ -72,7 +72,7 @@ jobs:
7272
name: cargo test docs
7373
runs-on: ubuntu-latest
7474
container:
75-
image: rust:1.79-bookworm
75+
image: rust:1.83-bookworm
7676
steps:
7777
- uses: actions/checkout@v3
7878
- uses: actions/cache@v3

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ license = "Apache-2.0"
99
repository = "https://github.com/semiotic-ai/timeline-aggregation-protocol"
1010

1111
[workspace.dependencies]
12-
alloy = { version = "0.6", features = ["full"] }
12+
alloy = { version = "0.7", features = ["full"] }
1313
serde = { version = "1.0.163", features = ["derive"] }
1414
rstest = "0.22.0"
1515
anyhow = { version = "1.0.89" }

Dockerfile.tap_aggregator

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM rust:1.79-bookworm as build
1+
FROM rust:1.83-bookworm as build
22

33
WORKDIR /root
44
COPY . .

tap_core/benches/timeline_aggretion_protocol_benchmark.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ pub fn criterion_benchmark(c: &mut Criterion) {
7272
.collect::<Vec<_>>();
7373

7474
rav_group.bench_function(
75-
&format!("Create RAV w/ 2^{} receipt's", log_number_of_receipts),
75+
format!("Create RAV w/ 2^{} receipt's", log_number_of_receipts),
7676
|b| {
7777
b.iter(|| {
7878
ReceiptAggregateVoucher::aggregate_receipts(
@@ -92,7 +92,7 @@ pub fn criterion_benchmark(c: &mut Criterion) {
9292
.unwrap();
9393

9494
rav_group.bench_function(
95-
&format!("Validate RAV w/ 2^{} receipt's", log_number_of_receipts),
95+
format!("Validate RAV w/ 2^{} receipt's", log_number_of_receipts),
9696
|b| b.iter(|| black_box(&signed_rav).verify(&domain_seperator, black_box(address))),
9797
);
9898
}

0 commit comments

Comments
 (0)