Minimal SQLite key-value store for OCaml
1# This file is generated by dune, edit dune-project instead
2opam-version: "2.0"
3synopsis: "Minimal SQLite key-value store for OCaml"
4description:
5 "A simple key-value store backed by SQLite with support for namespaced tables, WAL mode, and efficient batch operations."
6maintainer: ["Thomas Gazagnaire"]
7authors: ["Thomas Gazagnaire"]
8license: "MIT"
9tags: ["org:blacksun" "storage"]
10homepage: "https://tangled.org/gazagnaire.org/ocaml-sqlite"
11bug-reports: "https://tangled.org/gazagnaire.org/ocaml-sqlite/issues"
12depends: [
13 "dune" {>= "3.21"}
14 "ocaml" {>= "5.1"}
15 "btree" {>= "0.1"}
16 "eio" {>= "1.0"}
17 "eio_main" {>= "1.0"}
18 "fmt" {>= "0.9"}
19 "logs" {>= "0.7"}
20 "cmdliner" {>= "1.3"}
21 "vlog" {>= "0.1"}
22 "nox-tty" {>= "0.1"}
23 "wal" {>= "0.1"}
24 "menhir" {build}
25 "alcotest" {with-test}
26 "mdx" {with-test}
27 "alcobar" {with-test}
28 "odoc" {with-doc}
29]
30build: [
31 ["dune" "subst"] {dev}
32 [
33 "dune"
34 "build"
35 "-p"
36 name
37 "-j"
38 jobs
39 "@install"
40 "@runtest" {with-test}
41 "@doc" {with-doc}
42 ]
43]
44dev-repo: "git+https://tangled.org/gazagnaire.org/ocaml-sqlite"
45x-maintenance-intent: ["(latest)"]
46x-quality-build: "2026-04-15"
47x-quality-fuzz: "2026-04-15"
48x-quality-test: "2026-04-15"