[package]
edition = "2021"
rust-version = "1.88"
name = "synaptic-memory"
version = "0.2.7"
authors = ["Synaptic Contributors"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Conversation memory: Buffer, Window, Summary, SummaryBuffer, TokenBuffer strategies"
homepage = "https://dnw3.github.io/synaptic/"
readme = "README.md"
license = "MIT"
repository = "https://github.com/dnw3/synaptic"
[lib]
name = "synaptic_memory"
path = "src/lib.rs"
[[test]]
name = "buffer"
path = "tests/buffer.rs"
[[test]]
name = "file_history"
path = "tests/file_history.rs"
[[test]]
name = "history"
path = "tests/history.rs"
[[test]]
name = "in_memory"
path = "tests/in_memory.rs"
[[test]]
name = "summary"
path = "tests/summary.rs"
[[test]]
name = "summary_buffer"
path = "tests/summary_buffer.rs"
[[test]]
name = "summary_buffer_edge"
path = "tests/summary_buffer_edge.rs"
[[test]]
name = "token_buffer"
path = "tests/token_buffer.rs"
[[test]]
name = "window"
path = "tests/window.rs"
[[test]]
name = "window_edge"
path = "tests/window_edge.rs"
[dependencies.async-trait]
version = "0.1"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.synaptic-core]
version = "0.2"
[dependencies.synaptic-runnables]
version = "0.2"
[dependencies.tokio]
version = "1.41"
features = [
"macros",
"rt-multi-thread",
"sync",
"time",
"fs",
]
[dev-dependencies.synaptic-models]
version = "0.2"
[dev-dependencies.tokio]
version = "1.41"
features = [
"macros",
"rt-multi-thread",
"sync",
"time",
"fs",
]