this repo has no description
1opam-version: "2.0" 2authors: ["Petter A. Urkedal"] 3maintainer: "paurkedal@gmail.com" 4homepage: "https://github.com/paurkedal/ocaml-caqti/" 5bug-reports: "https://github.com/paurkedal/ocaml-caqti/issues" 6dev-repo: "git+https://github.com/paurkedal/ocaml-caqti.git" 7license: "LGPL-3.0-only WITH OCaml-LGPL-linking-exception" 8 9build: [ 10 ["jbuilder" "build" "-p" name "-j" jobs] 11 ["jbuilder" "runtest" "-p" name "-j" jobs] {with-test} 12] 13depends: [ 14 "ocaml" {>= "4.04.0"} 15 "jbuilder" {>= "1.0+beta19"} 16 "calendar" {>= "2.00"} 17 "ocamlfind" {build} 18 "ptime" 19 "uri" {>= "1.9.0"} 20] 21synopsis: "Unified interface to relational database libraries" 22description: """ 23Caqti provides a monadic cooperative-threaded OCaml connector API for 24relational databases. 25 26The purpose of Caqti is further to help make applications independent of a 27particular database system. This is achieved by defining a common signature, 28which is implemented by the database drivers. Connection parameters are 29specified as an URI, which is typically provided at run-time. Caqti then 30loads a driver which can handle the URI, and provides a first-class module 31which implements the driver API and additional convenience functionality. 32 33Caqti does not make assumptions about the structure of the query language, 34and only provides the type information needed at the edges of communication 35between the OCaml code and the database; i.e. for encoding parameters and 36decoding returned tuples. It is hoped that this agnostic choice makes it a 37suitable target for higher level interfaces and code generators.""" 38url { 39 src: 40 "https://github.com/paurkedal/ocaml-caqti/releases/download/v0.10.2/caqti-0.10.2.tbz" 41 checksum: [ 42 "sha256=d688bd22f6fde5be5a755900545fade0d5fdce6dbcb0b85770d02dad87c41e7c" 43 "md5=d18745a703da336054c0d27e78f8be8a" 44 ] 45}