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 "astring" 20 "uri" {< "2.0.0"} 21 "result" 22 "logs" {>= "0.5.0"} 23 "ipaddr" {>= "2.5.0" & < "3.0.0"} 24] 25synopsis: "An OCaml network connection establishment library" 26description: """ 27[![Build Status](https://travis-ci.org/mirage/ocaml-conduit.svg?branch=master)](https://travis-ci.org/mirage/ocaml-conduit) 28 29The `conduit` library takes care of establishing and listening for 30TCP and SSL/TLS connections for the Lwt and Async libraries. 31 32The reason this library exists is to provide a degree of abstraction 33from the precise SSL library used, since there are a variety of ways 34to bind to a library (e.g. the C FFI, or the Ctypes library), as well 35as well as which library is used (just OpenSSL for now). 36 37By default, OpenSSL is used as the preferred connection library, but 38you can force the use of the pure OCaml TLS stack by setting the 39environment variable `CONDUIT_TLS=native` when starting your program. 40 41The opam packages available are: 42 43- `conduit`: the main `Conduit` module 44- `conduit-lwt`: the portable Lwt implementation 45- `conduit-lwt-unix`: the Lwt/Unix implementation 46- `conduit-async` the Jane Street Async implementation 47- `mirage-conduit`: the MirageOS compatible implementation 48 49### Debugging 50 51Some of the `Lwt_unix`-based modules use a non-empty `CONDUIT_DEBUG` 52environment variable to output debugging information to standard error. 53Just set this variable when running the program to see what URIs 54are being resolved to. 55 56### Further Informartion 57 58* **API Docs:** http://docs.mirage.io/ 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.3/conduit-1.0.3.tbz" 65 checksum: [ 66 "sha256=4b6f4bef5262a898ea919137267b844ff5a29f6e3ce95a71c4f0d5b85138abdd" 67 "md5=e1ec0cbd3478ea572f43491fab69db44" 68 ] 69}