[package]
edition = "2024"
rust-version = "1.85"
name = "rig-memory"
version = "0.1.0"
build = false
include = [
"src/**/*",
"Cargo.toml",
"README.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Memory scaffolding for Rig."
homepage = "https://rig.rs"
documentation = "https://docs.rs/rig-memory"
readme = "README.md"
keywords = [
"rig",
"llm",
"memory",
"agents",
]
license = "MIT"
repository = "https://github.com/0xPlaygrounds/rig"
[lib]
name = "rig_memory"
path = "src/lib.rs"
[dependencies]
[lints.clippy]
dbg_macro = "forbid"
todo = "forbid"
unimplemented = "forbid"