-
Notifications
You must be signed in to change notification settings - Fork 590
Expand file tree
/
Copy pathCargo.toml
More file actions
34 lines (30 loc) · 1.33 KB
/
Copy pathCargo.toml
File metadata and controls
34 lines (30 loc) · 1.33 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
[package]
name = "ruvector-agent-memory"
version = "0.1.0"
edition = "2021"
description = "Coherence-weighted agent memory compaction for ruvector: retain important memories using recency, frequency, and semantic coherence"
authors = ["ruvnet", "claude-flow"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/ruvnet/ruvector"
keywords = ["agent-memory", "vector-search", "memory-management", "rag", "ruvector"]
categories = ["algorithms", "data-structures"]
[[bin]]
name = "agent-memory-bench"
path = "src/main.rs"
[dependencies]
rand = "0.8"
serde = { workspace = true }
# ADR-320 (PIR WP18): reuse the repo's SHA-256 (content addressing) and
# RFC 8032 Ed25519 (per-observation signatures) for AtomicObservation — no new
# hash or signature scheme (ADR-320 Security Gates). `ed25519` feature pulls in
# ed25519-dalek + rand_core; the always-compiled `sha256` module needs no
# feature.
rvf-types = { version = "0.2", path = "../rvf/rvf-types", features = ["ed25519"] }
# Existing ADR-194/047 proof-gated write machinery; adapts to the ledger's
# ProofGate trait behind the `proof-gate` feature (see src/ledger.rs).
ruvector-proof-gate = { path = "../ruvector-proof-gate", optional = true }
[features]
default = []
proof-gate = ["dep:ruvector-proof-gate"]
[dev-dependencies]
serde_json = { workspace = true }