memory-agent 0.1.2

Persistent memory system for AI coding agents
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
rust-version = "1.85"
name = "memory-agent"
version = "0.1.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Persistent memory system for AI coding agents"
homepage = "https://github.com/victorqnguyen/memory-agent"
readme = false
keywords = [
    "ai",
    "memory",
    "agent",
    "mcp",
    "sqlite",
]
categories = [
    "database",
    "command-line-utilities",
]
license-file = "LICENSE"
repository = "https://github.com/victorqnguyen/memory-agent"
resolver = "2"

[features]
default = ["tui"]
local-llm = ["reqwest"]
tui = [
    "ratatui",
    "crossterm",
]

[[bin]]
name = "memory-agent"
path = "src/main.rs"

[dependencies.anyhow]
version = "1"

[dependencies.blake3]
version = "1"

[dependencies.clap]
version = "4"
features = ["derive"]

[dependencies.crossterm]
version = "0.28"
optional = true

[dependencies.dirs]
version = "6"

[dependencies.memory-core]
version = "0.1.1"
features = ["encryption"]

[dependencies.ratatui]
version = "0.29"
optional = true

[dependencies.reqwest]
version = "0.12"
features = ["json"]
optional = true

[dependencies.rmcp]
version = "0.16"
features = [
    "server",
    "transport-io",
]

[dependencies.schemars]
version = "1"

[dependencies.serde]
version = "1"
features = ["derive"]

[dependencies.serde_json]
version = "1"

[dependencies.tokio]
version = "1"
features = [
    "rt-multi-thread",
    "macros",
    "io-std",
    "signal",
    "net",
    "sync",
]

[dependencies.toml]
version = "0.8"

[dependencies.tracing]
version = "0.1"

[dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]

[dev-dependencies.memory-core]
version = "0.1.1"
features = ["test-utils"]

[dev-dependencies.tempfile]
version = "3"

[target.'cfg(not(target_arch = "wasm32"))'.dependencies.git2]
version = "0.20"