this repo has no description
1opam-version: "2.0" 2maintainer: "dave@recoil.org" 3authors: ["Anil Madhavapeddy" "David Scott"] 4license: "ISC" 5tags: ["org:mirage" "org:xapi-project"] 6homepage: "https://github.com/mirage/shared-memory-ring" 7doc: "https://mirage.github.io/shared-memory-ring/" 8bug-reports: "https://github.com/mirage/shared-memory-ring/issues" 9depends: [ 10 "ocaml" {>= "4.08.0"} 11 "dune" 12 "cstruct" {>= "2.4.1"} 13 "shared-memory-ring" {= version} 14 "lwt" 15 "lwt-dllist" 16 "ounit" {with-test} 17] 18build: [ 19 ["dune" "subst"] {dev} 20 ["dune" "build" "-p" name "-j" jobs] 21 ["dune" "runtest" "-p" name "-j" jobs] {with-test} 22] 23dev-repo: "git+https://github.com/mirage/shared-memory-ring.git" 24synopsis: "Shared memory rings for RPC and bytestream communications using Lwt" 25description: """ 26This package contains a set of libraries for creating shared memory 27producer/consumer rings, using the Lwt concurrency library to handle blocking. 28The rings follow the Xen ABI and may be used to create or implement Xen virtual 29devices. 30""" 31url { 32 src: 33 "https://github.com/mirage/shared-memory-ring/releases/download/v3.2.1/shared-memory-ring-3.2.1.tbz" 34 checksum: [ 35 "sha256=a92767b6c3d0a34ffc2656cea0ee8d018b686bce87272e7258752c5a2fcf1833" 36 "sha512=190be12ded34e209d13608a609d9f3c9e657644cac4cdc829f475444efe69fcad9da0a4e2dbd503a682b196cc14b311e60cce3fbc68cdaf4fb15524a4252e7f1" 37 ] 38} 39x-commit-hash: "ed0e8fa13b35bddce6de1b65dbfb6eb215050bee" 40x-maintenance-intent: [ "(latest)" ]