Skip to content
Merged
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
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,15 @@ Backends: `redis://` (default when no scheme is given), `fs://` — selected by
## Build

```bash
make build # cargo build --release --bin kvspace → ~/.local/bin/kvspace (CLI)
make build # cargo build --release → libkvspace_durable.so
make test # build + tutorial/test.py
```

Crate types: `rlib`, `staticlib`, `cdylib` (`libkvspace_durable.so`).

> The `kvspace` CLI is **not** part of this crate — it lives in the [kvspace](../kvspace) repo
> (`cli/`, drives the dispatch front end so the backend is chosen by DSN).

## ABI

C ABI exported from the cdylib (`src/ffi.rs`):
Expand Down
Loading