venus 0.1.1

Reactive notebook environment for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Output handling for Venus CLI.
//!
//! This module provides utilities for decoding and formatting cell outputs
//! for terminal display.
//!
//! # Module Structure
//!
//! - `decoder` - Bincode decoding for common Rust types
//! - `formatter` - Terminal formatting and pretty-printing

pub mod decoder;
mod formatter;

pub use formatter::print_output;