fix: build error / warning

This commit is contained in:
Ludo Galabru
2023-09-20 00:39:07 -04:00
parent 427215d1af
commit 055c0d78d6
4 changed files with 3 additions and 4 deletions

2
Cargo.lock generated
View File

@@ -2408,7 +2408,7 @@ version = "0.5.0"
dependencies = [
"crossbeam-channel",
"error-chain",
"hiro-system-kit 0.1.0",
"hiro-system-kit 0.3.1",
"neon",
"num",
"ordhook",

View File

@@ -7,7 +7,6 @@ use futures_util::StreamExt;
use progressing::mapping::Bar as MappingBar;
use progressing::Baring;
use tar::Archive;
use std::fs;
use std::io::{self, Cursor};
use std::io::{Read, Write};

View File

@@ -473,7 +473,7 @@ impl Service {
let blocks_post_processor = start_block_archiving_processor(
&self.config,
&self.ctx,
false,
true,
block_post_processor.clone(),
);

View File

@@ -11,7 +11,7 @@ crate-type = ["cdylib"]
serde = "1"
error-chain = "0.12"
ordhook = { path = "../ordhook-core" }
hiro-system-kit = "0.1.0"
hiro-system-kit = "0.3.1"
crossbeam-channel = "0.5.6"
[dependencies.neon]