memrust 0.6.1

Agent-native memory engine: hybrid retrieval (HNSW + BM25 + entity graph + recency) behind remember/recall/forget, with HTTP and MCP interfaces
Documentation
# 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 = "2021"
name = "memrust"
version = "0.6.1"
build = false
exclude = [
    "assets/",
    "notebooks/",
    ".github/",
    "sdks/",
    "Dockerfile",
    ".dockerignore",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Agent-native memory engine: hybrid retrieval (HNSW + BM25 + entity graph + recency) behind remember/recall/forget, with HTTP and MCP interfaces"
readme = "README.md"
keywords = [
    "ai",
    "agents",
    "memory",
    "vector-search",
    "mcp",
]
categories = [
    "database-implementations",
    "data-structures",
]
license = "Apache-2.0"
repository = "https://github.com/AIAnytime/memrust"

[lib]
name = "memrust"
path = "src/lib.rs"

[[bin]]
name = "memrust"
path = "src/main.rs"

[[test]]
name = "engine"
path = "tests/engine.rs"

[[test]]
name = "graph_recall"
path = "tests/graph_recall.rs"

[[test]]
name = "lifecycle"
path = "tests/lifecycle.rs"

[[test]]
name = "multi_agent"
path = "tests/multi_agent.rs"

[[test]]
name = "scale"
path = "tests/scale.rs"

[[test]]
name = "tenancy"
path = "tests/tenancy.rs"

[dependencies.anyhow]
version = "1"

[dependencies.axum]
version = "0.7"

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

[dependencies.serde_json]
version = "1"

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

[dependencies.ureq]
version = "2"
features = ["json"]

[dependencies.uuid]
version = "1"
features = [
    "v4",
    "serde",
]

[profile.release]
lto = true
codegen-units = 1