[thin_check (rust)] rename block_manager.rs -> io_engine.rs

This commit is contained in:
Joe Thornber
2020-08-10 08:29:32 +01:00
parent fd0c0ffc1d
commit 08e3ea948e
6 changed files with 5 additions and 5 deletions

View File

@@ -7,7 +7,7 @@ use std::sync::{Arc, Mutex};
use std::time::Instant;
use threadpool::ThreadPool;
use crate::block_manager::{AsyncIoEngine, Block, IoEngine};
use crate::io_engine::{AsyncIoEngine, Block, IoEngine};
use crate::checksum;
use crate::pdata::btree::{unpack, BTreeWalker, Node, NodeVisitor, Unpack};
use crate::pdata::space_map::*;

View File

@@ -1,4 +1,4 @@
use crate::block_manager::*;
use crate::io_engine::*;
use anyhow::{anyhow, Result};
use nom::{bytes::complete::*, number::complete::*, IResult};