argentor-memory 1.3.0

Vector store, embeddings, and RAG pipeline for Argentor AI agents
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 = "argentor-memory"
version = "1.3.0"
authors = ["Federico Boiero <fboiero@xcapit.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Vector store, embeddings, and RAG pipeline for Argentor AI agents"
homepage = "https://github.com/fboiero/Argentor"
readme = false
keywords = [
    "ai",
    "agent",
    "wasm",
    "mcp",
    "orchestration",
]
categories = [
    "web-programming",
    "asynchronous",
    "network-programming",
]
license = "AGPL-3.0-only"
repository = "https://github.com/fboiero/Argentor"

[features]
default = []
http-embeddings = ["reqwest"]
http-vectorstore = ["reqwest"]

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

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

[dependencies.argentor-core]
version = "1.2.0"

[dependencies.async-trait]
version = "0.1"

[dependencies.chrono]
version = "0.4"
features = ["serde"]

[dependencies.regex]
version = "1"

[dependencies.reqwest]
version = "0.12"
features = [
    "json",
    "rustls-tls",
    "stream",
    "multipart",
]
optional = true
default-features = false

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

[dependencies.serde_json]
version = "1"

[dependencies.tokio]
version = "1"
features = ["full"]

[dependencies.tracing]
version = "0.1"

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

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

[lints.clippy]
cloned_instead_of_copied = "warn"
expect_used = "warn"
explicit_iter_loop = "warn"
implicit_clone = "warn"
redundant_closure_for_method_calls = "warn"
semicolon_if_nothing_returned = "warn"
uninlined_format_args = "warn"
unwrap_used = "warn"

[lints.rust]
missing_docs = "warn"