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
108 changes: 0 additions & 108 deletions Cargo.lock

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

15 changes: 1 addition & 14 deletions crates/tinymemory-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,6 @@ readme = "../../README.md"
# The contract. `tinymemory-core` implements and consumes it; the host seam
# traits (config, event sink, embeddings, chat) live in `tinymemory_api::host`.
tinymemory-api = { path = "../tinymemory-api" }
# Composio payload normalisers, extracted out of the engine (issue #18 §B3).
# They were reached through `tinycortex` until now, which meant a host binding a
# different engine could not have Composio sync despite none of this code
# caring which engine is bound.
tinymemory-sync = { path = "../tinymemory-sync" }
# The memory-source contracts and readers (#18 §B4). `network` because this
# crate's sync path drives the GitHub/RSS/web-page readers; a host that only
# reads local folders can take the crate without them.
Expand All @@ -31,11 +26,8 @@ tinymemory-sources = { path = "../tinymemory-sources", features = ["network"] }
# real consumer.
regex = "1.10"

# The default embedded engine. `store/`, `tree/` and `sync/` drive it directly;
# `tinycortex-api` is a direct dependency because `tinycortex::memory` aliases
# back only `{error, traits, types}`.
# The default embedded engine. `store/`, `tree/` and `sync/` drive it directly.
tinycortex = { version = "0.1", features = ["obsidian", "persona", "people", "sync"] }
tinycortex-api = { version = "0.1" }

# Provider-neutral chat-model and embedding primitives used by the tree
# summarizer and embedding factory. Agent runtime and session behavior do not
Expand All @@ -55,7 +47,6 @@ chrono = { version = "0.4", features = ["serde"] }
# `tinycortex/persona.rs` resolves the user's home directory for the obsidian
# vault default.
dirs = "6"
futures = "0.3"
log = "0.4"
parking_lot = "0.12"
# `tree/tree/registry.rs` salts a tree id; the sync readers talk HTTP to the
Expand All @@ -69,14 +60,10 @@ serde_json = "1"
sha2 = "0.11"
thiserror = "2.0"
tokio = { version = "1", features = ["full"] }
url = "2"
uuid = { version = "1", features = ["v4"] }
walkdir = "2"

[dev-dependencies]
# The ported Composio connect tests stand up a mock HTTP server (#18 §B1),
# exactly as they did in the engine.
wiremock = "0.6"
# `TestHostConfig` — the concrete `MemoryHostConfig` the extracted test suites
# build, since `Config` is a trait object and cannot be `Default`ed.
tinymemory-api = { path = "../tinymemory-api", features = ["test-support"] }
Expand Down
2 changes: 0 additions & 2 deletions crates/tinymemory-testing-ui/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ path = "src/main.rs"

[dependencies]
# The engine-neutral contract this harness drives every engine through.
tinymemory = { path = "../tinymemory" }
tinymemory-api = { path = "../tinymemory-api" }
# The TinyCortex adapter backs the "local" engine choice (in-process, no
# network, no API key). Re-exports the `tinycortex` engine crate itself
Expand All @@ -34,7 +33,6 @@ axum = { version = "0.8", features = ["multipart"] }
tower-http = { version = "0.7", features = ["fs"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
anyhow = "1"
# Parse URL authority fields before fetch so credentials can be rejected
# without ever reflecting them through an upstream error message.
url = "2"
Expand Down
2 changes: 0 additions & 2 deletions crates/tinymemory/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,6 @@ tinymemory-conformance = { path = "../tinymemory-conformance", optional = true }
async-trait = "0.1"
# `Memory` is anyhow-typed; `mandatory::engine_error` maps it onto `MemoryError`.
anyhow = "1"
# Diagnostics on the shared store/recall/export paths.
log = "0.4"
# `ExportRecord::payload` is a `serde_json::Value`.
serde_json = "1"

Expand Down
Loading