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