mempill 0.2.0

Temporally-correct memory for AI agents — bi-temporal claim store with Contested-first conflict surfacing and oracle resolution (thin facade over mempill-core + adapters)
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"
rust-version = "1.88"
name = "mempill"
version = "0.2.0"
authors = ["Aliaksei Ivanouski"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Temporally-correct memory for AI agents — bi-temporal claim store with Contested-first conflict surfacing and oracle resolution (thin facade over mempill-core + adapters)"
homepage = "https://mempill.netlify.app"
readme = "README.md"
keywords = [
    "ai",
    "agent",
    "memory",
    "temporal",
    "llm",
]
categories = [
    "database",
    "data-structures",
]
license = "Apache-2.0"
repository = "https://github.com/mempill-ai/mempill"

[package.metadata.docs.rs]
all-features = true

[features]
default = ["sqlite"]
postgres = ["dep:mempill-postgres"]
sqlite = ["dep:mempill-sqlite"]

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

[[example]]
name = "quickstart"
path = "examples/quickstart.rs"

[[example]]
name = "temporal_validity"
path = "examples/temporal_validity.rs"

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

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

[dependencies.mempill-core]
version = "0.2.0"

[dependencies.mempill-postgres]
version = "0.2.0"
optional = true

[dependencies.mempill-sqlite]
version = "0.2.0"
optional = true

[dependencies.mempill-types]
version = "0.2.0"

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

[dependencies.serde_json]
version = "1"

[dependencies.thiserror]
version = "1"

[dev-dependencies.tokio]
version = "1"
features = [
    "rt-multi-thread",
    "macros",
]