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.0.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: "Network conduit library" 35description: """ 36The `conduit` library takes care of establishing and listening for 37TCP and SSL/TLS connections for the Lwt and Async libraries. 38 39The reason this library exists is to provide a degree of abstraction 40from the precise SSL library used, since there are a variety of ways 41to bind to a library (e.g. the C FFI, or the Ctypes library), as well 42as well as which library is used (just OpenSSL for now). 43 44By default, OpenSSL is used as the preferred connection library, but 45you can force the use of the pure OCaml TLS stack by setting the 46environment variable `CONDUIT_TLS=native` when starting your program. 47 48The opam packages available are: 49 50- `conduit`: the main `Conduit` module 51- `conduit-lwt`: the portable Lwt implementation 52- `conduit-lwt-unix`: the Lwt/Unix implementation 53- `conduit-async` the Jane Street Async implementation 54- `mirage-conduit`: the MirageOS compatible implementation 55 56### Debugging 57 58Some of the `Lwt_unix`-based modules use a non-empty `CONDUIT_DEBUG` 59environment variable to output debugging information to standard error. 60Just set this variable when running the program to see what URIs 61are being resolved to. 62 63### Further Informartion 64 65* **API Docs:** http://docs.mirage.io/ 66* **WWW:** https://github.com/mirage/ocaml-conduit 67* **E-mail:** <mirageos-devel@lists.xenproject.org> 68* **Bugs:** https://github.com/mirage/ocaml-conduit/issues""" 69url { 70 src: 71 "https://github.com/mirage/ocaml-conduit/releases/download/v1.0.2/conduit-1.0.2.tbz" 72 checksum: [ 73 "sha256=626bb37860cf8e5905056051fa89586a6576e10325d8623c96b405d18623e6a5" 74 "md5=fd4d56bb84ec87ec84f010bea1d7cd82" 75 ] 76}