Files
vectorize-io__hindsight/hindsight-cli/Cargo.toml
T
Nicolò Boschi ebad478240 Release v0.9.2
- Update version to 0.9.2 in all components
- Regenerate OpenAPI spec and client SDKs
- Python packages: hindsight-api, hindsight-dev, hindsight-all, hindsight-embed
- Python client: hindsight-clients/python
- TypeScript client: hindsight-clients/typescript
- hindsight-all npm wrapper: hindsight-all-npm
- Rust CLI: hindsight-cli
- Control Plane: hindsight-control-plane
- Helm chart
- Sync documentation to version-0.9
2026-08-25 12:19:47 +02:00

64 lines
1.4 KiB
TOML

[package]
name = "hindsight-cli"
version = "0.9.2"
edition = "2021"
authors = ["Hindsight Team"]
description = "A beautiful CLI for Hindsight - semantic memory system"
license = "MIT"
[[bin]]
name = "hindsight"
path = "src/main.rs"
[dependencies]
# Hindsight API client (generated)
hindsight-client = { path = "../hindsight-clients/rust" }
# CLI framework
clap = { version = "4.5", features = ["derive", "env"] }
# Async runtime
tokio = { version = "1", features = ["full"] }
# HTTP client (for timeout configuration and multipart file uploads).
# The blocking client backs the `fs` subcommand's knowledge-base sync engine.
reqwest = { version = "0.12", features = ["multipart", "blocking"] }
# Serialization (for config and output formatting)
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_yaml = "0.9"
# TUI libraries
ratatui = "0.29"
crossterm = "0.28"
# Colors and styling
colored = "2.1"
indicatif = "0.17"
# Error handling
anyhow = "1.0"
thiserror = "1.0"
# Utilities
chrono = "0.4"
walkdir = "2.5"
dirs = "5.0"
# `fs` subcommand: content hashing for the sync state + POSIX daemon control
# (setsid/kill) so the background refresh loop detaches like the old TS tool.
sha2 = "0.10"
libc = "0.2"
[dev-dependencies]
# For integration tests with blocking HTTP client
reqwest = { version = "0.12", features = ["blocking"] }
[profile.release]
opt-level = "z"
lto = true
codegen-units = 1
panic = "abort"
strip = true