path-cli 0.8.0

CLI for deriving, querying, and visualizing Toolpath provenance (binary: path)
Documentation
[package]
name = "path-cli"
version = "0.8.0"
edition.workspace = true
license.workspace = true
repository = "https://github.com/empathic/toolpath"
description = "CLI for deriving, querying, and visualizing Toolpath provenance (binary: path)"
keywords = ["provenance", "toolpath", "cli", "audit", "traceability"]
categories = ["command-line-utilities", "development-tools"]
default-run = "path"

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

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

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

[dependencies]
toolpath = { workspace = true }
toolpath-git = { workspace = true }
toolpath-dot = { workspace = true }
toolpath-md = { workspace = true }
clap = { workspace = true }
anyhow = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
similar = { workspace = true }
chrono = { workspace = true }
tempfile = { workspace = true }
rand = "0.9"
jsonschema = { version = "0.46", default-features = false }
sha2 = "0.10"

[target.'cfg(not(target_os = "emscripten"))'.dependencies]
toolpath-claude = { workspace = true, features = ["watcher"] }
toolpath-gemini = { workspace = true, features = ["watcher"] }
toolpath-codex = { workspace = true }
toolpath-opencode = { workspace = true }
toolpath-pi = { workspace = true }
toolpath-convo = { workspace = true }
toolpath-github = { workspace = true }
pathbase-client = { workspace = true }
git2 = { workspace = true }
reqwest = { workspace = true }
tokio = { workspace = true }

[target.'cfg(target_os = "emscripten")'.dependencies]
toolpath-claude = { workspace = true }
toolpath-gemini = { workspace = true }
toolpath-codex = { workspace = true }
toolpath-pi = { workspace = true }

[dev-dependencies]
assert_cmd = "2"
predicates = "3"
insta = { workspace = true }
toolpath-convo = { workspace = true }