Minimal SQLite key-value store for OCaml
0
fork

Configure Feed

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

Migrate dune-project files to tangled source format

Convert all packages from:
(source (uri https://tangled.org/handle/repo))
to:
(source (tangled handle/repo))

This uses dune 3.21's native tangled support for cleaner source
declarations. Also removes redundant homepage/bug_reports fields
that are auto-generated from tangled sources.

+7 -4
+2 -2
dune-project
··· 1 - (lang dune 3.0) 1 + (lang dune 3.21) 2 2 3 3 (name sqlite) 4 4 ··· 7 7 (license MIT) 8 8 (authors "Thomas Gazagnaire") 9 9 (maintainers "Thomas Gazagnaire") 10 - (source (uri https://tangled.org/gazagnaire.org/ocaml-sqlite)) 10 + (source (tangled gazagnaire.org/ocaml-sqlite)) 11 11 12 12 (package 13 13 (name sqlite)
+5 -2
sqlite.opam
··· 6 6 maintainer: ["Thomas Gazagnaire"] 7 7 authors: ["Thomas Gazagnaire"] 8 8 license: "MIT" 9 + homepage: "https://tangled.org/gazagnaire.org/ocaml-sqlite" 10 + bug-reports: "https://tangled.org/gazagnaire.org/ocaml-sqlite/issues" 9 11 depends: [ 10 - "dune" {>= "3.0"} 12 + "dune" {>= "3.21"} 11 13 "ocaml" {>= "5.1"} 12 14 "eio" {>= "1.0"} 13 15 "sqlite3" {>= "5.0"} ··· 30 32 "@doc" {with-doc} 31 33 ] 32 34 ] 33 - dev-repo: "https://tangled.org/gazagnaire.org/ocaml-sqlite" 35 + dev-repo: "git+https://tangled.org/gazagnaire.org/ocaml-sqlite" 36 + x-maintenance-intent: ["(latest)"]