9 lines
1.0 KiB
Markdown
Raw Normal View History

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