this repo has no description
1opam-version: "2.0" 2synopsis: "CoHTTP implementation for the MirageOS unikernel" 3description: """ 4This HTTP implementation uses the Cohttp portable implementaiton 5along with the Lwt threading library in order to provide a 6`Cohttp_mirage` functor that can be used in MirageOS unikernels 7to build very small and efficient HTTP clients and servers 8without having a hard dependency on an underlying operating 9system. 10 11Please see <https://mirage.io> for a self-hosted explanation 12and instructions on how to use this library.""" 13maintainer: ["Anil Madhavapeddy <anil@recoil.org>"] 14authors: [ 15 "Anil Madhavapeddy" 16 "Stefano Zacchiroli" 17 "David Sheets" 18 "Thomas Gazagnaire" 19 "David Scott" 20 "Rudi Grinberg" 21 "Andy Ray" 22 "Anurag Soni" 23] 24license: "ISC" 25homepage: "https://github.com/mirage/ocaml-cohttp" 26doc: "https://mirage.github.io/ocaml-cohttp/" 27bug-reports: "https://github.com/mirage/ocaml-cohttp/issues" 28depends: [ 29 "dune" {>= "2.9"} 30 "ocaml" {>= "4.08"} 31 "mirage-flow" {>= "2.0.0"} 32 "mirage-channel" {>= "4.0.0"} 33 "conduit" {>= "2.0.2" & < "8.0.0"} 34 "conduit-mirage" {>= "2.3.0" & < "8.0.0"} 35 "mirage-kv" {>= "3.0.0"} 36 "lwt" {>= "2.4.3"} 37 "cohttp-lwt" {= version} 38 "cstruct" {>= "6.0.0"} 39 "fmt" {>= "0.8.7"} 40 "astring" 41 "magic-mime" 42 "ppx_sexp_conv" {>= "v0.13.0"} 43 "cohttp" {= version} 44 "odoc" {with-doc} 45] 46dev-repo: "git+https://github.com/mirage/ocaml-cohttp.git" 47build: [ 48 ["dune" "subst"] {dev} 49 [ 50 "dune" 51 "build" 52 "-p" 53 name 54 "-j" 55 jobs 56 "--promote-install-files=false" 57 "@install" 58 "@cohttp-mirage/runtest" {with-test} 59 "@doc" {with-doc} 60 ] 61 ["dune" "install" "-p" name "--create-install-files" name] 62] 63available: opam-version >= "2.1.0" 64flags: [ avoid-version ] 65url { 66 src: 67 "https://github.com/mirage/ocaml-cohttp/releases/download/v6.0.0_alpha0/cohttp-eio-6.0.0.alpha0.tbz" 68 checksum: [ 69 "sha256=2ed4acd5ea309ca064731ec9f02a4b4afcec1ab000f471da68ae81355130b56e" 70 "sha512=e741293352d8376eaf7ccc7ba986dc8fd33cc560b8a786d4b4f8cffde5f1d78651dd5dbb944db00e57a48f25bffdde8d6d7b8c5828605ed02f295c297ef87fdd" 71 ] 72} 73x-commit-hash: "ba9ca0791c3fd6242e28026feaa41fe4ac453089"