KeiSeiKit-1.0/_primitives/_rust/kei-export-trajectories/Cargo.toml
Parfii-bot a4e667de10 KeiSeiKit-public — clean state
Single-commit clean baseline after security scrub of niche-tells,
project codenames, internal jargon, and contributor-email leaks.

Contents:
- 100 Rust crates (_primitives/_rust/)
- 37 agent manifests (_manifests/) + generated specs (_generated/)
- 67 user-invocable skills (skills/)
- 33 hooks (hooks/)
- Composition blocks (_blocks/)
- Documentation (docs/, README.md)
- TS adapter packages (_ts_packages/)
- Assembler (_assembler/)
- Roles (_roles/)
- Templates (_templates/)
- Forgejo CI (.forgejo/)

Author: Denis Parfionovich <info@greendragon.info>

License: see LICENSE.
2026-05-01 12:09:03 +08:00

31 lines
992 B
TOML

[package]
name = "kei-export-trajectories"
version = "0.1.0"
edition = "2021"
description = "Export agent trajectories to ShareGPT JSONL format."
authors = ["Denis Parfionovich <info@greendragon.info>"]
# Constructor Pattern: a thin binary on top of a thin library so tests can
# drive the same code-paths the CLI does without re-implementing them.
[[bin]]
name = "kei-export-trajectories"
path = "src/main.rs"
[lib]
name = "kei_export_trajectories"
path = "src/lib.rs"
[dependencies]
# rusqlite "bundled" matches every other primitive in this workspace —
# no system-libsqlite3 surprise on macOS / Modal / Daytona.
rusqlite = { version = "0.31", features = ["bundled"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
anyhow = "1"
clap = { version = "4", features = ["derive"] }
# chrono only used to parse the `--from-ts` ISO-8601 string into an epoch.
chrono = { version = "0.4", default-features = false, features = ["clock"] }
[dev-dependencies]
tempfile = "3"