Skip to content

Commit

Permalink
chore(deps): update rust crate alloy to v0.7 (#250)
Browse files Browse the repository at this point in the history
* 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]>
  • Loading branch information
LNSD authored Dec 3, 2024
1 parent f680f4c commit 1c6e29f
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
name: cargo fmt
runs-on: ubuntu-latest
container:
image: rust:1.79-bookworm
image: rust:1.83-bookworm
steps:
- uses: actions/checkout@v3
- run: |
Expand All @@ -23,7 +23,7 @@ jobs:
name: cargo clippy
runs-on: ubuntu-latest
container:
image: rust:1.79-bookworm
image: rust:1.83-bookworm
steps:
- uses: actions/checkout@v3
- uses: actions/cache@v3
Expand All @@ -47,7 +47,7 @@ jobs:
pull-requests: write
actions: read
container:
image: rust:1.79-bookworm
image: rust:1.83-bookworm
steps:
- uses: actions/checkout@v3
- uses: actions/cache@v3
Expand All @@ -72,7 +72,7 @@ jobs:
name: cargo test docs
runs-on: ubuntu-latest
container:
image: rust:1.79-bookworm
image: rust:1.83-bookworm
steps:
- uses: actions/checkout@v3
- uses: actions/cache@v3
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ license = "Apache-2.0"
repository = "https://github.com/semiotic-ai/timeline-aggregation-protocol"

[workspace.dependencies]
alloy = { version = "0.6", features = ["full"] }
alloy = { version = "0.7", features = ["full"] }
serde = { version = "1.0.163", features = ["derive"] }
rstest = "0.22.0"
anyhow = { version = "1.0.89" }
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.tap_aggregator
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM rust:1.79-bookworm as build
FROM rust:1.83-bookworm as build

WORKDIR /root
COPY . .
Expand Down
4 changes: 2 additions & 2 deletions tap_core/benches/timeline_aggretion_protocol_benchmark.rs
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ pub fn criterion_benchmark(c: &mut Criterion) {
.collect::<Vec<_>>();

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

rav_group.bench_function(
&format!("Validate RAV w/ 2^{} receipt's", log_number_of_receipts),
format!("Validate RAV w/ 2^{} receipt's", log_number_of_receipts),
|b| b.iter(|| black_box(&signed_rav).verify(&domain_seperator, black_box(address))),
);
}
Expand Down

0 comments on commit 1c6e29f

Please sign in to comment.