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
4 changes: 2 additions & 2 deletions .github/workflows/verify-impl.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ jobs:
ref: ${{ env.MALACHITE_GIT_REF }}
path: ./malachite

- name: Install Rust 1.89.0
- name: Install Rust 1.95.0
uses: actions-rs/toolchain@v1
with:
toolchain: 1.89.0
toolchain: 1.95.0
profile: default
components: llvm-tools-preview
override: true
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM rust:1.89 AS chef
FROM rust:1.95 AS chef
Comment thread
manan19 marked this conversation as resolved.

WORKDIR /usr/src/app

Expand Down
1 change: 0 additions & 1 deletion src/storage/store/account/block_event_store.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ use crate::storage::db::{PageOptions, RocksDB, RocksDbTransactionBatch, RocksdbE
use prost::Message;
use std::sync::Arc;
use thiserror::Error;
use tracing::error;

#[derive(Error, Debug)]
pub enum BlockEventStorageError {
Expand Down
2 changes: 1 addition & 1 deletion src/storage/store/migrations/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use crate::{core::error::HubError, storage::constants::RootPrefix};
use async_trait::async_trait;
use std::sync::Arc;
use thiserror::Error;
use tracing::{error, info};
use tracing::info;

mod m1_fix_fname_index;

Expand Down
Loading