mvtk 1.0.3

AI-optimized developer toolkit — structured JSONL output for grep, read, tree, diff, blame, symbols, metrics, deps, changes, ctx, todos, refs, stash, test, lint
Documentation
[package]
name = "mvtk"
version = "1.0.3"
edition = "2021"
rust-version = "1.70"
description = "AI-optimized developer toolkit — structured JSONL output for grep, read, tree, diff, blame, symbols, metrics, deps, changes, ctx, todos, refs, stash, test, lint"
authors = ["Scalecode Solutions <scalecode.solutions@protonmail.com>"]
license = "LicenseRef-NCCL-1.0"
repository = "https://github.com/scalecode-solutions/mvToolkit"
homepage = "https://github.com/scalecode-solutions/mvToolkit"
documentation = "https://docs.rs/mvtk"
readme = "README.md"
keywords = ["cli", "developer-tools", "jsonl", "grep", "ai"]
categories = ["command-line-utilities", "development-tools"]

# mvtk is both a CLI binary and a reusable library.
# Add as a dependency: mvtk = { path = "../mvtk" }
# Then call e.g. mvtk::cmd::read::run(&opts, &mut emitter) directly.

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

[[bin]]
name = "mvtk"
path = "src/bin/mvtk.rs"

[dependencies]
clap = { version = "4", features = ["derive"] }
ignore = "0.4"
regex = "1"
rayon = "1"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
anyhow = "1"

[dev-dependencies]
tempfile = "3"

[profile.release]
opt-level = 3
lto = true
codegen-units = 1
strip = true