My own corner of monopam
2
fork

Configure Feed

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

at main 49 lines 1.2 kB view raw
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 "nox-memtrace" {with-test} 28 "alcobar" {with-test} 29 "odoc" {with-doc} 30] 31build: [ 32 ["dune" "subst"] {dev} 33 [ 34 "dune" 35 "build" 36 "-p" 37 name 38 "-j" 39 jobs 40 "@install" 41 "@runtest" {with-test} 42 "@doc" {with-doc} 43 ] 44] 45dev-repo: "git+https://tangled.org/gazagnaire.org/ocaml-sqlite" 46x-maintenance-intent: ["(latest)"] 47x-quality-build: "2026-04-15" 48x-quality-fuzz: "2026-04-15" 49x-quality-test: "2026-04-15"