Minimal SQLite key-value store for OCaml
at main 41 lines 1.0 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" 9homepage: "https://tangled.org/gazagnaire.org/ocaml-sqlite" 10bug-reports: "https://tangled.org/gazagnaire.org/ocaml-sqlite/issues" 11depends: [ 12 "dune" {>= "3.21"} 13 "ocaml" {>= "5.1"} 14 "btree" {>= "0.1"} 15 "eio" {>= "1.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"} 22 "alcotest" {with-test} 23 "crowbar" {with-test} 24 "odoc" {with-doc} 25] 26build: [ 27 ["dune" "subst"] {dev} 28 [ 29 "dune" 30 "build" 31 "-p" 32 name 33 "-j" 34 jobs 35 "@install" 36 "@runtest" {with-test} 37 "@doc" {with-doc} 38 ] 39] 40dev-repo: "git+https://tangled.org/gazagnaire.org/ocaml-sqlite" 41x-maintenance-intent: ["(latest)"]