[package]
edition = "2024"
name = "toolpath-cursor"
version = "0.2.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Derive Toolpath provenance documents from Cursor's bubble store and agent transcripts"
readme = "README.md"
keywords = [
"cursor",
"provenance",
"toolpath",
"audit",
"ai",
]
categories = ["development-tools"]
license = "Apache-2.0"
repository = "https://github.com/empathic/toolpath"
resolver = "2"
[lib]
name = "toolpath_cursor"
path = "src/lib.rs"
[[example]]
name = "dump_fixture"
path = "examples/dump_fixture.rs"
[[test]]
name = "projection_roundtrip"
path = "tests/projection_roundtrip.rs"
[[test]]
name = "real_session_sanity"
path = "tests/real_session_sanity.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.rusqlite]
version = "0.32"
features = ["bundled"]
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.sha2]
version = "0.10"
[dependencies.thiserror]
version = "1.0"
[dependencies.toolpath]
version = "0.7.0"
[dependencies.toolpath-convo]
version = "0.11.0"
[dev-dependencies.tempfile]
version = "3.15"