41 lines
983 B
TOML
41 lines
983 B
TOML
[package]
|
|
name = "hindsight-client"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
authors = ["Hindsight Team"]
|
|
description = "Rust client library for Hindsight API - semantic memory system"
|
|
license = "MIT"
|
|
repository = "https://github.com/yourusername/hindsight"
|
|
keywords = ["api", "client", "memory", "ai"]
|
|
categories = ["api-bindings"]
|
|
|
|
[dependencies]
|
|
# HTTP client
|
|
reqwest = { version = "0.12", features = ["json"] }
|
|
# Async runtime
|
|
tokio = { version = "1", features = ["full"] }
|
|
# Serialization
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
# Error handling
|
|
thiserror = "1.0"
|
|
# Progenitor client support
|
|
progenitor-client = "0.11"
|
|
# Additional types
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
# HTTP types
|
|
http = "1.0"
|
|
# URL handling
|
|
url = "2.5"
|
|
|
|
[dev-dependencies]
|
|
tokio-test = "0.4"
|
|
uuid = { version = "1.0", features = ["v4"] }
|
|
|
|
[build-dependencies]
|
|
progenitor = "0.11"
|
|
serde_json = "1.0"
|
|
syn = "2.0"
|
|
prettyplease = "0.2"
|
|
openapiv3 = "2.2"
|
|
regex = "1.10"
|