cross-stream 0.12.0

An event stream store for personal, local-first use, specializing in event sourcing.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
mod config;
mod engine;
pub mod vfs;

pub mod commands;
pub mod util;
pub use config::{parse_config, NuScriptConfig, ReturnOptions};
pub use engine::{add_core_commands, Engine};
pub use util::{frame_to_pipeline, frame_to_value, value_to_json};
pub use vfs::load_modules;

#[cfg(test)]
mod test_commands;
#[cfg(test)]
mod test_engine;
#[cfg(test)]
mod test_vfs;