ἀρχεῖον — the house where the records of record live

The database where every version is still alive

An embedded, versioned, auditable engine in pure Rust — as if SQLite and Git had a child, born in Europe. And it learned to search.

Read the source

v0.13.0 on crates.io · MIT or Apache-2.0 · single-file databases

-- the past is addressable
SELECT id, status, total
FROM invoices
AS OF VERSION 128;

-- and provable
db.verify()?;   ✓ chain intact
389 tests 0 lines unsafe 4 runtime deps 1 fsync / commit 100% open-source engine

Scrub time

Four commits to an invoices table. Drag the version — every state is one query away.

verify()
SELECT * FROM invoices AS OF VERSION 4;
idstatustotal
1001issued€120.00

v4 DELETE invoice 1002

Invoice 1002 is gone here — and perfectly readable one version back.

A serious engine in a single file

A real SQL dialect

JOINs, subqueries, CTEs, views, triggers, foreign keys — and a logical ALTER TABLE that never rewrites rows.

Search lives in the file

Full-text BM25 and vector ANN in the same encrypted, versioned file. MATCH … AS OF searches the past.

A past you can prove

Hash-chained commits, verify() with anchors, branches with three-way merge. History is a feature, not a log.

Where it fits

One engine, five stacks it replaces — each with the number that proves it.

Benchmarked, honestly

Every operation as a speed ratio vs SQLite, on a real disk. Right of parity we're faster — and yes, the full scan is still theirs.

0.5×evenSELECT by PK3.13×Durable write2.51×Batch insert2.19×Full scan0.48×
Each dot wears the winner's color. Hover a dot for the raw numbers; the axis is logarithmic so 2× and ½× sit at equal distances from parity.

Sovereign by construction

Designed, written and governed in Europe. Four runtime dependencies, not a line of unsafe code, no SQLite lineage — and the whole engine is open source.

Arkeion cloud is coming

A managed, verifiable database — you get a connection string, we never see your data. It already runs in production behind quota.at.

What we're building