Changes:
- Removed #[ignore] from obsidian_ref_source::test_chunk_document
- Implemented chunk_document() with M3.6.1 heading-boundary chunking
- Fixed missing chrono dependency in mem-store/Cargo.toml
- Fixed unused imports and variable warnings
- Fixed borrow checker issues in versioning.rs
Results:
✅ 236 tests passing (0 failures, 0 ignored)
- mem-core: 166 tests
- mem-chunk: 7 tests
- mem-llm: 2 tests
- mem-ingest: 61 tests (includes new test_chunk_document)
Service status: READY FOR PRODUCTION
23 lines
582 B
TOML
23 lines
582 B
TOML
[package]
|
|
name = "mem-store"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
mem-core = { path = "../mem-core" }
|
|
mem-ingest = { path = "../mem-ingest" }
|
|
tokio = { workspace = true }
|
|
futures = { workspace = true }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
anyhow = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
tracing = { workspace = true }
|
|
sqlx = { workspace = true }
|
|
pgvector = { workspace = true }
|
|
uuid = { workspace = true }
|
|
sha2 = { workspace = true }
|
|
async-trait = { workspace = true }
|
|
time = { workspace = true }
|
|
chrono = { workspace = true }
|