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]
15
16depends: [
17 "ocaml" {>= "4.04.2"}
18 "jbuilder" {>= "1.0+beta7"}
19 "fmt"
20 "lwt"
21 "logs"
22 "cstruct" {>= "2.0.0" & < "6.1.0"}
23 "mirage-clock" {>= "1.2.0" & < "3.0.0"}
24 "mirage-flow" {>= "1.2.0" & < "2.0.0"}
25]
26synopsis: "Flow implementations and combinators for MirageOS"
27description: """
28This repo contains generic operations over Mirage `FLOW` implementations.
29
30Please consult [the API documentation](https://mirage.github.io/mirage-flow/index.html).
31
32### Example usage
33
34In a top-level like utop:
35```ocaml"""
36url {
37 src:
38 "https://github.com/mirage/mirage-flow/releases/download/v1.5.0/mirage-flow-1.5.0.tbz"
39 checksum: [
40 "sha256=5c7969c5f7669e67fe2698270220aef93c0d7a516ff553ca7beb976c9e799e95"
41 "md5=a9e90517457514cc5c46ec46f477d01f"
42 ]
43}
44flags: deprecated
45post-messages: [ "mirage-flow-lwt is deprecated, and has been folded into mirage-flow" ]