This commit is contained in:
2026-02-27 12:13:37 +09:00
commit 147ab03756
13 changed files with 473 additions and 0 deletions

21
Cargo.toml Normal file
View File

@@ -0,0 +1,21 @@
[package]
name = "aigpt"
version = "0.3.0"
edition = "2021"
authors = ["syui"]
description = "AI memory MCP server - read/write core.md and memory.md"
[lib]
name = "aigpt"
path = "src/lib.rs"
[[bin]]
name = "aigpt"
path = "src/main.rs"
[dependencies]
clap = { version = "4.5", features = ["derive"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
anyhow = "1.0"
dirs = "5.0"