Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading