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 42The opam packages available are: 43 44- `conduit`: the main `Conduit` module 45- `conduit-lwt`: the portable Lwt implementation 46- `conduit-lwt-unix`: the Lwt/Unix implementation 47- `conduit-async` the Jane Street Async implementation 48- `mirage-conduit`: the MirageOS compatible implementation 49 50### Debugging 51 52Some of the `Lwt_unix`-based modules use a non-empty `CONDUIT_DEBUG` 53environment variable to output debugging information to standard error. 54Just set this variable when running the program to see what URIs 55are being resolved to. 56 57### Further Informartion 58 59* **API Docs:** http://docs.mirage.io/ 60* **WWW:** https://github.com/mirage/ocaml-conduit 61* **E-mail:** <mirageos-devel@lists.xenproject.org> 62* **Bugs:** https://github.com/mirage/ocaml-conduit/issues""" 63url { 64 src: 65 "https://github.com/mirage/ocaml-conduit/releases/download/v1.0.1/conduit-1.0.1.tbz" 66 checksum: [ 67 "sha256=01a09dc631cf88acdd94e1c6174bf88e473811c3ba6ff4c9e2f0dd45f5ef8782" 68 "md5=ef2095d59d93303697c944f9d404e64d" 69 ] 70} 71flags: deprecated