Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 10 additions & 10 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ members = [
]

[workspace.package]
version = "0.1.2"
version = "0.1.3"
edition = "2024"
authors = ["Mansur Azatbek <mansur62624@gmail.com>"]
license = "MIT"
Expand All @@ -23,9 +23,9 @@ homepage = "https://github.com/m62624/plugmem"

[workspace.dependencies]
# Local crates (version pinned so the crates can be published to crates.io)
plugmem-arena = { path = "crates/plugmem-arena", version = "0.1.2", default-features = false }
plugmem-core = { path = "crates/plugmem-core", version = "0.1.2", default-features = false }
plugmem-host = { path = "crates/plugmem-host", version = "0.1.2" }
plugmem-arena = { path = "crates/plugmem-arena", version = "0.1.3", default-features = false }
plugmem-core = { path = "crates/plugmem-core", version = "0.1.3", default-features = false }
plugmem-host = { path = "crates/plugmem-host", version = "0.1.3" }
# Internal, never published: path-only, so cargo strips it from published
# manifests when it appears as a dev-dependency.
plugmem-testgen = { path = "crates/plugmem-testgen" }
Expand Down
4 changes: 2 additions & 2 deletions crates/plugmem-napi/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion crates/plugmem-napi/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "plugmem",
"version": "0.1.0",
"version": "0.1.3",
"description": "Native Node.js addon for plugmem: an embedded long-term memory engine for LLM agents (remember / recall / revise / forget over one local file).",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion tools/bench-charts/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "plugmem-bench-charts"
version = "0.1.2"
version = "0.1.3"
edition = "2024"
publish = false
description = "Renders the benchmark-matrix TSV into the README chart SVGs (plotters, pure Rust — no browser; log axis for order-of-magnitude metrics)."
Expand Down
Loading