[package]
edition = "2024"
rust-version = "1.91"
name = "memstead-base"
version = "0.2.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Engine internals for Memstead — store, parser, validators, filesystem-mem engine."
homepage = "https://memstead.io"
readme = "README.md"
keywords = [
"agent-memory",
"knowledge-graph",
"markdown",
"graph",
"agents",
]
categories = ["database-implementations"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/memstead/memstead"
resolver = "2"
[package.metadata.docs.rs]
all-features = true
[features]
default = []
file-watcher = ["dep:notify"]
tokio = ["dep:tokio"]
[lib]
name = "memstead_base"
path = "src/lib.rs"
[dependencies.globset]
version = "0.4"
[dependencies.indexmap]
version = "2"
features = ["serde"]
[dependencies.memstead-schema]
version = "0.2.0"
[dependencies.notify]
version = "7"
optional = true
[dependencies.regex]
version = "1"
[dependencies.schemars]
version = "1.0"
features = [
"derive",
"indexmap2",
"semver1",
]
[dependencies.semver]
version = "1"
features = ["serde"]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.sha2]
version = "0.10"
[dependencies.strsim]
version = "0.11"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = ["sync"]
optional = true
default-features = false
[dependencies.toml]
version = "0.8"
[dependencies.tracing]
version = "0.1"
[dependencies.unicode-normalization]
version = "0.1"
[dependencies.zip]
version = "8"
features = [
"deflate-flate2-zlib-rs",
"time",
]
default-features = false
[dev-dependencies.tempfile]
version = "3"
[dev-dependencies.tokio]
version = "1"
features = [
"macros",
"rt-multi-thread",
"io-std",
"macros",
"rt",
"rt-multi-thread",
"time",
]
[target.'cfg(not(target_arch = "wasm32"))'.dependencies.tantivy]
version = "0.26"
[lints.clippy]
result_large_err = "allow"