mocra 0.4.1

A distributed, event-driven crawling and data collection framework
1
2
3
4
5
6
7
8
9
10
11
12
13
//! DAG scheduling (the `mocra-dag` shim + host adapter) has been extracted into the `schedule`
//! module of the standalone [`mocra_core`] crate.
//!
//! This module remains as a re-export shim so that the existing `crate::schedule::*` and
//! `crate::schedule::dag::*` paths keep working (zero-change migration); new code can use
//! `mocra_core::schedule::...` directly.

pub use mocra_core::schedule::*;

/// Compatibility shim for the old `crate::schedule::dag::*` path.
pub mod dag {
    pub use mocra_core::schedule::dag::*;
}