this repo has no description
1opam-version: "2.0"
2synopsis: "CoHTTP implementation for Unix and Windows using Lwt"
3description: """
4An implementation of an HTTP client and server using the Lwt
5concurrency library. See the `Cohttp_lwt_unix` module for information
6on how to use this. The package also installs `cohttp-curl-lwt`
7and a `cohttp-server-lwt` binaries for quick uses of a HTTP(S)
8client and server respectively.
9
10Although the name implies that this only works under Unix, it
11should also be fine under Windows too.
12"""
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.8"}
30 "ocaml" {>= "4.08"}
31 "http" {= version}
32 "cohttp" {= version}
33 "cohttp-lwt" {= version}
34 "cmdliner" {>= "1.1.0"}
35 "lwt" {>= "3.0.0"}
36 "conduit-lwt" {>= "7.1.0"}
37 "conduit-lwt-unix" {>= "7.1.0"}
38 "fmt" {>= "0.8.2"}
39 "base-unix"
40 "ppx_sexp_conv" {>= "v0.13.0"}
41 "magic-mime"
42 "logs"
43 "ounit2" {with-test}
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 "@install"
57 "@cohttp-lwt-unix/runtest" {with-test}
58 "@doc" {with-doc}
59 ]
60]
61url {
62 src:
63 "https://github.com/mirage/ocaml-cohttp/releases/download/v6.1.0/cohttp-6.1.0.tbz"
64 checksum: [
65 "sha256=a81ac49699ec45f58b3d85cc4e2274120d28449d7c2075adb3234f0583d76c33"
66 "sha512=55b75c6afea58fa97a702712c5ecfb67bcfb8de32345ca0e40c16561aaf6f001daaf05781484a1df5caab85353f931b841169f3229563c655c463b7f7b44cd54"
67 ]
68}
69x-commit-hash: "de25ba68286866577bd8a81c002176cc22dd49e4"