38 lines
723 B
TOML
38 lines
723 B
TOML
[package]
|
|
name = "aigpt"
|
|
version = "0.2.0"
|
|
edition = "2021"
|
|
authors = ["syui"]
|
|
description = "Simple memory storage for Claude with MCP - Layer 1: Pure Memory Storage"
|
|
|
|
[lib]
|
|
name = "aigpt"
|
|
path = "src/lib.rs"
|
|
|
|
[[bin]]
|
|
name = "aigpt"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
# CLI and async
|
|
clap = { version = "4.5", features = ["derive"] }
|
|
tokio = { version = "1.40", features = ["rt", "macros", "io-std"] }
|
|
|
|
# Database
|
|
rusqlite = { version = "0.30", features = ["bundled"] }
|
|
|
|
# Serialization
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
|
|
# Date/time and ULID
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
ulid = "1.1"
|
|
|
|
# Error handling
|
|
thiserror = "1.0"
|
|
anyhow = "1.0"
|
|
|
|
# Utilities
|
|
dirs = "5.0"
|