updates readme

This commit is contained in:
Ben 2024-05-13 14:14:27 +02:00
parent 2d399e3247
commit 1519c7cf6c
No known key found for this signature in database
GPG Key ID: 541B9D8C9F1426A1
1 changed files with 5 additions and 3 deletions

View File

@ -1,12 +1,14 @@
# leveldb.nim
[![docs](https://img.shields.io/badge/docs-leveldb.nim-green)](https://zielmicha.github.io/leveldb.nim/)
A self-contained LevelDB wrapper for Nim in a Nim friendly way. Uses git-submodule and nimterop so that no external libraries have to be installed or linked.
A LevelDB wrapper for Nim in a Nim friendly way.
Original nim LevelDB wrapper: [HERE](https://github.com/zielmicha/leveldb.nim)
Replacing of system library dependency with self-contained C/CPP interoperability by (Codex.Storage)[https://codex.storage]
Create a database:
```Nim
import leveldb
import leveldbstatic
import options
var db = leveldb.open("/tmp/mydata")