this repo has no description
1opam-version: "2.0"
2authors: "The Ocsigen team <dev@ocsigen.org>"
3maintainer: "Jan Rochel <jan@besport.com>"
4license: "LGPL-2.1-only WITH OCaml-LGPL-linking-exception"
5synopsis: "Persistent key/value storage (for Ocsigen) using multiple backends"
6description: "This is an virtual library defining a unified frontend for a number of key/value storage implementations. Ocsipersist is used pervasively in Eliom/Ocsigen to handle sessions and references. It can be used as an extension for ocsigenserver or as a library. Implementations of the following backends currently exist: DBM database, PostgreSQL, SQLite."
7
8homepage: "https://github.com/ocsigen/ocsipersist"
9bug-reports: "https://github.com/ocsigen/ocsipersist/issues"
10dev-repo: "git+https://github.com/ocsigen/ocsipersist.git"
11build: [ "dune" "build" "-p" name "-j" jobs ]
12
13depends: [
14 "dune" {>= "2.9"}
15 "lwt" {>= "4.2.0"}
16 "ocsigenserver" {>= "3.0.0"}
17 "ocsipersist-lib" {>= "1.0.0" & < "1.1.0"}
18]
19
20depopts: [
21 "ocsipersist-dbm"
22 "ocsipersist-pgsql"
23 "ocsipersist-sqlite"
24]
25
26conflicts: [
27 "ocsipersist-dbm" {< "1.0.0" | >= "1.1.0"}
28 "ocsipersist-pgsql" {< "1.0.0" | >= "1.1.0"}
29 "ocsipersist-sqlite" {< "1.0.0" | >= "1.1.0"}
30]
31url {
32 src: "https://github.com/jrochel/ocsipersist/archive/1.0.tar.gz"
33 checksum: [
34 "md5=d07413b0b7802b88e7bf7d52d141a48d"
35 "sha512=4205748b93a9f74e8e2c1f7ddfc4a2a90f054abadeda5a0cf020eeabbf4d429d57b9b8a9d1a5b6fed733f48e414bbcdef88893e829c3925c755abea7fe5b67a0"
36 ]
37}