opencrabs 0.3.47

The autonomous, self-improving AI agent. Single Rust binary. Every channel. Install with: cargo install opencrabs
Documentation
1
2
3
4
5
6
7
8
9
10
//! Hashline editing module.
//!
//! Provides hash-anchored file editing where lines are referenced by 2-char
//! content hashes instead of reproduced text.

pub mod edit;
pub mod hash;
pub mod types;

pub use edit::HashlineEditTool;