this repo has no description
1opam-version: "2.0" 2maintainer: "thomas@gazagnaire.org" 3homepage: "https://github.com/mirage/mirage-flow" 4bug-reports: "https://github.com/mirage/mirage-flow/issues" 5dev-repo: "git+https://github.com/mirage/mirage-flow.git" 6doc: "https://mirage.github.io/mirage-flow/" 7authors: ["Thomas Gazagnaire" "Dave Scott"] 8tags: [ "org:mirage"] 9license: "ISC" 10 11build: [ 12 ["jbuilder" "subst" "-p" name] {dev} 13 ["jbuilder" "build" "-p" name "-j" jobs] 14 ["jbuilder" "runtest" "-p" name] {with-test} 15] 16depends: [ 17 "ocaml" {>= "4.04.2"} 18 "jbuilder" {>= "1.0+beta7"} 19 "fmt" 20 "logs" 21 "mirage-flow" {>= "1.2.0" & < "2.0.0"} 22 "mirage-flow-lwt" {>= "1.2.0"} 23 "lwt" 24 "cstruct" {>= "3.2.0"} 25 "alcotest" {with-test & < "1.4.0"} 26] 27synopsis: "Flow implementations and combinators for MirageOS" 28description: """ 29This repo contains generic operations over Mirage `FLOW` implementations. 30 31Please consult [the API documentation](https://mirage.github.io/mirage-flow/index.html). 32 33### Example usage 34 35In a top-level like utop: 36```ocaml""" 37url { 38 src: 39 "https://github.com/mirage/mirage-flow/releases/download/v1.5.0/mirage-flow-1.5.0.tbz" 40 checksum: [ 41 "sha256=5c7969c5f7669e67fe2698270220aef93c0d7a516ff553ca7beb976c9e799e95" 42 "md5=a9e90517457514cc5c46ec46f477d01f" 43 ] 44}