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