9 lines
949 B
Markdown
Raw Permalink Normal View History

2026-06-05 11:31:18 +02:00
## Crate Overview
2026-05-21 16:16:14 +02:00
2026-06-05 11:31:18 +02:00
| Crate | Kind | Responsibility |
|-----------------|--------------------|-----------------------------------------------------------------------------------------------------------------|
| `storage` | library | Defines a unified interface to use different storage backends (like Geomerge, SQLite, LMDB, etc.) |
| `query-ops` | library | Provides a set of operators (like different types of joins) to execute a query plan. |
| `plan-runner` | library and binary | Provides a CLI to run a query plan against a given storage backend using the operatirs provided by `query-ops`. |
| `geomerge-demo` | binary | An example that shows how to write and read to Geomerge (as a storage). |