[package]
edition = "2021"
rust-version = "1.74"
name = "trace-diff"
version = "0.1.0"
authors = ["Mukunda Rao Katta <mukunda.vjcs6@gmail.com>"]
build = false
exclude = [
".github/*",
"target/*",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Diff two agent traces semantically: align by event type + key, ignore timestamps and ids, return added/removed/changed steps. Zero deps beyond serde_json."
homepage = "https://github.com/MukundaKatta/trace-diff"
documentation = "https://docs.rs/trace-diff"
readme = "README.md"
keywords = [
"trace",
"diff",
"agent",
"replay",
"regression",
]
categories = [
"development-tools::debugging",
"data-structures",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/MukundaKatta/trace-diff"
[lib]
name = "trace_diff"
path = "src/lib.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[dependencies.serde_json]
version = "1"