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] 14 15depends: [ 16 "ocaml" {>= "4.03.0"} 17 "jbuilder" {>= "1.0+beta10"} 18 "ppx_sexp_conv" 19 "cstruct" {>= "3.0.0"} 20 "mirage-types-lwt" {>= "3.0.0" & < "3.7.0"} 21 "mirage-flow-lwt" {>= "1.2.0"} 22 "mirage-dns" {>= "3.0.0" & < "4.0.0"} 23 "conduit-lwt" 24 "ipaddr" {< "3.0.0"} 25 "vchan" {>= "3.0.0"} 26 "tls" {>= "0.8.0" & < "0.11.0"} 27] 28synopsis: "Network conduit library" 29description: """ 30The `conduit` library takes care of establishing and listening for 31TCP and SSL/TLS connections for the Lwt and Async libraries. 32 33The reason this library exists is to provide a degree of abstraction 34from the precise SSL library used, since there are a variety of ways 35to bind to a library (e.g. the C FFI, or the Ctypes library), as well 36as well as which library is used (just OpenSSL for now). 37 38By default, OpenSSL is used as the preferred connection library, but 39you can force the use of the pure OCaml TLS stack by setting the 40environment variable `CONDUIT_TLS=native` when starting your program. 41 42### Modules 43 44Source code is in `lib/`. 45 46* `Conduit_lwt_unix` has the Lwt UNIX modules. 47* `Conduit_async` has the Core/Async modules. 48 49There are also resolvers that map URIs to Conduit endpoints. 50See <http://mirage.github.io/ocaml-conduit/> for the online `ocamldoc` 51for more details. 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* **WWW:** https://github.com/mirage/ocaml-conduit 63* **E-mail:** <mirageos-devel@lists.xenproject.org> 64* **Bugs:** https://github.com/mirage/ocaml-conduit/issues""" 65url { 66 src: 67 "https://github.com/mirage/ocaml-conduit/releases/download/v1.0.0/conduit-1.0.0.tbz" 68 checksum: [ 69 "sha256=2b3c74998af84fb6ac1e0f81d8881401adf14b64fa54e7717e797bb2ccc3d1cc" 70 "md5=4656f150b9f98603c21d00c8f0aa1a9b" 71 ] 72} 73flags: deprecated