loom-diff 0.1.0

Line-level diff for loom. Pure-function unified-diff over byte slices and text strings, used by both the loom CLI and the loom-gateway. Layered above weave-sdk; lower levels untouched.
Documentation
[package]
name = "loom-diff"
version = "0.1.0"
edition = "2021"
authors = ["L1fe Labs, Inc. <dev@l1fe.ai>"]
description = "Line-level diff for loom. Pure-function unified-diff over byte slices and text strings, used by both the loom CLI and the loom-gateway. Layered above weave-sdk; lower levels untouched."
license = "MIT OR Apache-2.0"
repository = "https://github.com/l1feai/loom-diff"
keywords = ["loom", "diff", "vcs", "unified-diff"]
categories = ["development-tools"]

[lib]
name = "loom_diff"
path = "src/lib.rs"

[dependencies]
# Battle-tested Myers diff. similar is the de-facto Rust diff lib —
# powers cargo-insta, prettier-style tooling, and many others.
similar = { version = "2.6", default-features = false, features = ["unicode", "text"] }
serde = { version = "1.0", features = ["derive"] }
thiserror = "1.0"

[dev-dependencies]
serde_json = "1.0"