paladin-memory 0.5.1

Memory adapters for the Paladin framework — Garrison (conversation history) and Sanctum (vector search)
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 = "2024"
name = "paladin-memory"
version = "0.5.1"
authors = ["Am0rfu5"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Memory adapters for the Paladin framework — Garrison (conversation history) and Sanctum (vector search)"
documentation = "https://docs.rs/paladin-memory"
readme = "README.md"
keywords = [
    "ai",
    "memory",
    "vector",
    "garrison",
    "sanctum",
]
categories = [
    "development-tools",
    "asynchronous",
    "api-bindings",
]
license = "MIT"
repository = "https://github.com/DF3NDR/paladin-dev-env"
resolver = "2"

[features]
content-processing = ["dep:tiktoken-rs"]
default = []
qdrant = ["dep:qdrant-client"]
sqlite = ["dep:sqlx"]

[lib]
name = "paladin_memory"
path = "src/lib.rs"
doctest = false

[[bench]]
name = "garrison_benchmarks"
path = "benches/garrison_benchmarks.rs"
harness = false

[[bench]]
name = "sanctum_benchmarks"
path = "benches/sanctum_benchmarks.rs"
harness = false

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

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

[dependencies.futures]
version = "0.3"

[dependencies.log]
version = "0.4.21"

[dependencies.paladin-core]
version = "0.5.1"
package = "paladin-ai-core"

[dependencies.paladin-ports]
version = "0.5.1"

[dependencies.qdrant-client]
version = "1.14"
optional = true

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

[dependencies.serde_json]
version = "1.0"

[dependencies.sqlx]
version = "0.8"
features = [
    "runtime-tokio-rustls",
    "sqlite",
    "chrono",
    "uuid",
    "json",
    "migrate",
]
optional = true
default-features = false

[dependencies.thiserror]
version = "2"

[dependencies.tiktoken-rs]
version = "0.6.0"
optional = true

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

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

[dev-dependencies.criterion]
version = "0.5"
features = ["async_tokio"]

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

[dev-dependencies.tokio-test]
version = "0.4"