this repo has no description
1opam-version: "2.0"
2maintainer: "anil@recoil.org"
3authors: ["Anil Madhavapeddy" "Thomas Leonard" "Thomas Gazagnaire"]
4homepage: "https://github.com/mirage/ocaml-conduit"
5dev-repo: "git+https://github.com/mirage/ocaml-conduit.git"
6bug-reports: "https://github.com/mirage/ocaml-conduit/issues"
7tags: "org:mirage"
8license: "ISC"
9
10build: [
11 ["jbuilder" "subst" "-p" name "--name" name] {dev}
12 ["jbuilder" "build" "-p" name "-j" jobs]
13 ["jbuilder" "runtest" "-p" name] {with-test}
14]
15depends: [
16 "ocaml" {>= "4.03.0"}
17 "jbuilder" {>= "1.0+beta9"}
18 "ipaddr" {< "3.0.0"}
19 "ppx_sexp_conv"
20 "cstruct" {>= "3.0.0"}
21 "mirage-types-lwt" {>= "3.0.0" & < "3.7.0"}
22 "mirage-flow-lwt" {>= "1.2.0"}
23 "mirage-dns" {>= "3.0.0" & < "4.0.0"}
24 "conduit-lwt"
25 "vchan" {>= "3.0.0"}
26 "xenstore"
27 "tls" {>= "0.8.0" & < "0.11.0"}
28]
29synopsis: "An OCaml network connection establishment library"
30description: """
31[](https://travis-ci.org/mirage/ocaml-conduit)
32
33The `conduit` library takes care of establishing and listening for
34TCP and SSL/TLS connections for the Lwt and Async libraries.
35
36The reason this library exists is to provide a degree of abstraction
37from the precise SSL library used, since there are a variety of ways
38to bind to a library (e.g. the C FFI, or the Ctypes library), as well
39as well as which library is used (just OpenSSL for now).
40
41By default, OpenSSL is used as the preferred connection library, but
42you can force the use of the pure OCaml TLS stack by setting the
43environment variable `CONDUIT_TLS=native` when starting your program.
44
45The opam packages available are:
46
47- `conduit`: the main `Conduit` module
48- `conduit-lwt`: the portable Lwt implementation
49- `conduit-lwt-unix`: the Lwt/Unix implementation
50- `conduit-async` the Jane Street Async implementation
51- `mirage-conduit`: the MirageOS compatible implementation
52
53### Debugging
54
55Some of the `Lwt_unix`-based modules use a non-empty `CONDUIT_DEBUG`
56environment variable to output debugging information to standard error.
57Just set this variable when running the program to see what URIs
58are being resolved to.
59
60### Further Informartion
61
62* **API Docs:** http://docs.mirage.io/
63* **WWW:** https://github.com/mirage/ocaml-conduit
64* **E-mail:** <mirageos-devel@lists.xenproject.org>
65* **Bugs:** https://github.com/mirage/ocaml-conduit/issues"""
66url {
67 src:
68 "https://github.com/mirage/ocaml-conduit/releases/download/v1.0.3/conduit-1.0.3.tbz"
69 checksum: [
70 "sha256=4b6f4bef5262a898ea919137267b844ff5a29f6e3ce95a71c4f0d5b85138abdd"
71 "md5=e1ec0cbd3478ea572f43491fab69db44"
72 ]
73}
74flags: deprecated