this repo has no description
1opam-version: "2.0"
2synopsis: "A single-consumer single-producer queue on a block device"
3description: """
4This is a simple queue containing variable-length items stored on a
5 disk, in the style of Xen shared-memory-ring."""
6maintainer: "jonathan.ludlam@citrix.com"
7authors: ["David Scott" "Jon Ludlam" "Si Beaumont" "Pau Ruiz Safont"]
8license: "ISC"
9tags: ["org:mirage" "org:xapi-project"]
10homepage: "https://github.com/mirage/shared-block-ring"
11bug-reports: "https://github.com/mirage/shared-block-ring/issues/"
12depends: [
13 "ocaml" {>= "4.06.0"}
14 "bisect_ppx" {dev & >= "2.5.0"}
15 "cmdliner" {>= "1.1.0"}
16 "cstruct" {>= "6.0.0"}
17 "dune" {>= "2.7.0"}
18 "duration"
19 "io-page" {>= "2.4.0"}
20 "logs"
21 "lwt"
22 "lwt_log"
23 "mirage-block" {>= "3.0.0"}
24 "mirage-block-unix" {>= "2.13.0"}
25 "mirage-clock" {>= "3.0.0"}
26 "mirage-clock-unix" {with-test}
27 "mirage-time" {>= "2.0.1"}
28 "mirage-time-unix"
29 "ounit2" {with-test}
30 "ppx_cstruct"
31 "ppx_sexp_conv" {>= "v0.10.0"}
32 "result"
33 "rresult"
34 "sexplib"
35 "sexplib0"
36]
37build: [
38 ["dune" "subst"] {dev}
39 ["dune" "build" "-p" name "-j" jobs]
40]
41dev-repo: "git+https://github.com/mirage/shared-block-ring.git"
42url {
43 src:
44 "https://github.com/mirage/shared-block-ring/releases/download/v3.0.1/shared-block-ring-3.0.1.tbz"
45 checksum: [
46 "sha256=cf2ad61fbbf598f2aa6cb85fbea2e554a0a1fdaaadb0c8161eccbaa1910f3b83"
47 "sha512=274c9edaf7cc9bec72afd50f366bdc7287e354485649b5c29a9c4441356e222592573b31e2b5e3e28d98253d6303a77b8c353a3345d2664e5795ae35075f9b9c"
48 ]
49}
50x-commit-hash: "e780fd9ed2186c14dd49f9e8d00211be648aa762"
51x-maintenance-intent: [ "(latest)" ]