Minimal SQLite key-value store for OCaml
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Cleanups

+14 -4
+7 -2
dune-project
··· 16 16 "A simple key-value store backed by SQLite with support for namespaced tables, WAL mode, and efficient batch operations.") 17 17 (depends 18 18 (ocaml (>= 5.1)) 19 + (btree (>= 0.1)) 19 20 (eio (>= 1.0)) 20 - (sqlite3 (>= 5.0)) 21 + (eio_main (>= 1.0)) 22 + (fmt (>= 0.9)) 23 + (logs (>= 0.7)) 24 + (cmdliner (>= 1.3)) 25 + (vlog (>= 0.1)) 26 + (tty (>= 0.1)) 21 27 (alcotest :with-test) 22 - (eio_main :with-test) 23 28 (crowbar :with-test)))
+7 -2
sqlite.opam
··· 11 11 depends: [ 12 12 "dune" {>= "3.21"} 13 13 "ocaml" {>= "5.1"} 14 + "btree" {>= "0.1"} 14 15 "eio" {>= "1.0"} 15 - "sqlite3" {>= "5.0"} 16 + "eio_main" {>= "1.0"} 17 + "fmt" {>= "0.9"} 18 + "logs" {>= "0.7"} 19 + "cmdliner" {>= "1.3"} 20 + "vlog" {>= "0.1"} 21 + "tty" {>= "0.1"} 16 22 "alcotest" {with-test} 17 - "eio_main" {with-test} 18 23 "crowbar" {with-test} 19 24 "odoc" {with-doc} 20 25 ]