diff --git a/yama/src/bin/yama.rs b/yama/src/bin/yama.rs index 5d00979..bec6c51 100644 --- a/yama/src/bin/yama.rs +++ b/yama/src/bin/yama.rs @@ -26,7 +26,7 @@ use std::sync::Arc; use yama::commands::{fully_integrate_pointer_node, load_pile_descriptor, open_pile}; use yama::debug::{debug_command, DebugCommand}; use yama::operations::checking::VacuumMode; -use yama::operations::pushpull::{determine_bypass_level, open_pile_with_work_bypass, push_to}; +use yama::operations::legacy_pushpull::{determine_bypass_level, open_pile_with_work_bypass, push_to}; use yama::operations::{checking, extracting}; use yama::pile::{Pile, PileDescriptor, RawPile}; use yama::{commands, debug}; diff --git a/yama/src/operations.rs b/yama/src/operations.rs index 6ff5a15..89283b4 100644 --- a/yama/src/operations.rs +++ b/yama/src/operations.rs @@ -1,4 +1,4 @@ pub mod checking; pub mod extracting; -pub mod pushpull; +pub mod legacy_pushpull; pub mod storing; diff --git a/yama/src/operations/pushpull.rs b/yama/src/operations/legacy_pushpull.rs similarity index 99% rename from yama/src/operations/pushpull.rs rename to yama/src/operations/legacy_pushpull.rs index 5c104aa..25207f9 100644 --- a/yama/src/operations/pushpull.rs +++ b/yama/src/operations/legacy_pushpull.rs @@ -2,7 +2,7 @@ use crate::chunking::RecursiveUnchunker; use crate::commands::fully_load_pointer; use crate::definitions::{ChunkId, RecursiveChunkRef, TreeNode}; use crate::operations::checking::VacuumRawPile; -use crate::operations::pushpull::PushWorkerToManagerMessage::{NewTask, TaskDone}; +use crate::operations::legacy_pushpull::PushWorkerToManagerMessage::{NewTask, TaskDone}; use crate::pile::compression::{CompressionSettings, RawPileCompressor}; use crate::pile::integrity::RawPileIntegrityChecker; use crate::pile::local_sqlitebloblogs::SqliteBloblogPile;