cruxx-core 0.2.5

Core types, traits, and runtime for the cruxx agentic DSL
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/// Task registry — persistent, crash-safe task management.
pub mod backend;
pub mod error;
pub mod in_memory;
pub mod task;

#[cfg(feature = "redb")]
pub mod redb;

pub use backend::RegistryBackend;
pub use error::RegistryErr;
pub use in_memory::InMemoryBackend;
pub use task::{Task, TaskRegistry, TaskStatus};

#[cfg(feature = "redb")]
pub use self::redb::RedbBackend;