Minimal SQLite key-value store for OCaml
at main 28 lines 633 B view raw
1(lang dune 3.21) 2 3(name sqlite) 4 5(generate_opam_files true) 6 7(license MIT) 8(authors "Thomas Gazagnaire") 9(maintainers "Thomas Gazagnaire") 10(source (tangled gazagnaire.org/ocaml-sqlite)) 11 12(package 13 (name sqlite) 14 (synopsis "Minimal SQLite key-value store for OCaml") 15 (description 16 "A simple key-value store backed by SQLite with support for namespaced tables, WAL mode, and efficient batch operations.") 17 (depends 18 (ocaml (>= 5.1)) 19 (btree (>= 0.1)) 20 (eio (>= 1.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)) 27 (alcotest :with-test) 28 (crowbar :with-test)))