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 "base-unix" 17 "jbuilder" {>= "1.0+beta9"} 18 "ppx_sexp_conv" {< "v0.15"} 19 "conduit-lwt" {>= "1.1.0"} 20 "lwt" {>= "3.0.0"} 21 "uri" {>= "1.9.4"} 22 "ipaddr" {>= "2.8.0" & < "3.0.0"} 23 "ocaml-migrate-parsetree" {< "2.0.0"} 24] 25depopts: [ 26 "tls" 27 "lwt_ssl" 28 "launchd" 29] 30conflicts: [ 31 "tls" {< "0.8.0"} 32 "tls" {>= "0.11.0"} 33] 34synopsis: "An OCaml network connection establishment library" 35description: """ 36[![Build Status](https://travis-ci.org/mirage/ocaml-conduit.svg?branch=master)](https://travis-ci.org/mirage/ocaml-conduit) 37 38The `conduit` library takes care of establishing and listening for 39TCP and SSL/TLS connections for the Lwt and Async libraries. 40 41The reason this library exists is to provide a degree of abstraction 42from the precise SSL library used, since there are a variety of ways 43to bind to a library (e.g. the C FFI, or the Ctypes library), as well 44as well as which library is used (just OpenSSL for now). 45 46By default, OpenSSL is used as the preferred connection library, but 47you can force the use of the pure OCaml TLS stack by setting the 48environment variable `CONDUIT_TLS=native` when starting your program. 49 50The opam packages available are: 51 52- `conduit`: the main `Conduit` module 53- `conduit-lwt`: the portable Lwt implementation 54- `conduit-lwt-unix`: the Lwt/Unix implementation 55- `conduit-async` the Jane Street Async implementation 56- `mirage-conduit`: the MirageOS compatible implementation 57 58### Debugging 59 60Some of the `Lwt_unix`-based modules use a non-empty `CONDUIT_DEBUG` 61environment variable to output debugging information to standard error. 62Just set this variable when running the program to see what URIs 63are being resolved to. 64 65### Further Informartion 66 67* **API Docs:** http://docs.mirage.io/ 68* **WWW:** https://github.com/mirage/ocaml-conduit 69* **E-mail:** <mirageos-devel@lists.xenproject.org> 70* **Bugs:** https://github.com/mirage/ocaml-conduit/issues""" 71url { 72 src: 73 "https://github.com/mirage/ocaml-conduit/releases/download/v1.1.0/conduit-1.1.0.tbz" 74 checksum: [ 75 "sha256=4ba5e96740342fba3605e0cc155bd1e2e559520b749e4a64e4fe6b03406f984b" 76 "md5=eb1d02c80d06ef812d97dc1ab588b597" 77 ] 78}