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" {>= "3.0"} 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] 46available: opam-version >= "2.1.0" 47flags: [ avoid-version ] 48dev-repo: "git+https://github.com/mirage/ocaml-cohttp.git" 49build: [ 50 ["dune" "subst"] {dev} 51 [ 52 "dune" 53 "build" 54 "-p" 55 name 56 "-j" 57 jobs 58 "@install" 59 "@cohttp-mirage/runtest" {with-test} 60 "@doc" {with-doc} 61 ] 62] 63url { 64 src: 65 "https://github.com/mirage/ocaml-cohttp/releases/download/v6.0.0_alpha1/cohttp-6.0.0.alpha1.tbz" 66 checksum: [ 67 "sha256=4e3ece8ade6493fe731c0842f519cc0f8f564753d71c985aa4ed6de3f0753646" 68 "sha512=5db6f1ffab6fc2ab30baffb1fc82b7f50b11ddb31ec19fc4415dac40f04766f29e816a4cf99ddb152b93c8acbefade7779ad3dc3d092e2f88fa1deea3fc2721a" 69 ] 70} 71x-commit-hash: "16e991ec1f7e5f0c99615cd1f58b99b02e3d0499"