this repo has no description
1opam-version: "2.0"
2maintainer: "anil@recoil.org"
3authors: ["Anil Madhavapeddy" "Thomas Leonard" "Thomas Gazagnaire" "Rudi Grinberg"]
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]
14depends: [
15 "ocaml" {>= "4.03.0"}
16 "jbuilder" {>= "1.0+beta9"}
17 "ppx_sexp_conv"
18 "sexplib"
19 "uri" {< "2.0.0"}
20 "result"
21 "astring"
22 "logs" {>= "0.5.0"}
23 "ipaddr" {>= "2.5.0" & < "3.0.0"}
24]
25synopsis: "Network conduit library"
26description: """
27The `conduit` library takes care of establishing and listening for
28TCP and SSL/TLS connections for the Lwt and Async libraries.
29
30The reason this library exists is to provide a degree of abstraction
31from the precise SSL library used, since there are a variety of ways
32to bind to a library (e.g. the C FFI, or the Ctypes library), as well
33as well as which library is used (just OpenSSL for now).
34
35By default, OpenSSL is used as the preferred connection library, but
36you can force the use of the pure OCaml TLS stack by setting the
37environment variable `CONDUIT_TLS=native` when starting your program.
38
39### Modules
40
41Source code is in `lib/`.
42
43* `Conduit_lwt_unix` has the Lwt UNIX modules.
44* `Conduit_async` has the Core/Async modules.
45
46There are also resolvers that map URIs to Conduit endpoints.
47See <http://mirage.github.io/ocaml-conduit/> for the online `ocamldoc`
48for more details.
49
50### Debugging
51
52Some of the `Lwt_unix`-based modules use a non-empty `CONDUIT_DEBUG`
53environment variable to output debugging information to standard error.
54Just set this variable when running the program to see what URIs
55are being resolved to.
56
57### Further Informartion
58
59* **WWW:** https://github.com/mirage/ocaml-conduit
60* **E-mail:** <mirageos-devel@lists.xenproject.org>
61* **Bugs:** https://github.com/mirage/ocaml-conduit/issues"""
62url {
63 src:
64 "https://github.com/mirage/ocaml-conduit/releases/download/v1.0.0/conduit-1.0.0.tbz"
65 checksum: [
66 "sha256=2b3c74998af84fb6ac1e0f81d8881401adf14b64fa54e7717e797bb2ccc3d1cc"
67 "md5=4656f150b9f98603c21d00c8f0aa1a9b"
68 ]
69}