this repo has no description
1opam-version: "2.0" 2maintainer: "Jane Street developers" 3authors: ["Jane Street Group, LLC"] 4homepage: "https://github.com/janestreet/async_ssl" 5bug-reports: "https://github.com/janestreet/async_ssl/issues" 6dev-repo: "git+https://github.com/janestreet/async_ssl.git" 7doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/async_ssl/index.html" 8license: "MIT" 9build: [ 10 ["dune" "build" "-p" name "-j" jobs] 11] 12depends: [ 13 "ocaml" {>= "4.08.0"} 14 "async" {>= "v0.14" & < "v0.15"} 15 "base" {>= "v0.14" & < "v0.15"} 16 "core" {>= "v0.14" & < "v0.15"} 17 "ppx_jane" {>= "v0.14" & < "v0.15"} 18 "stdio" {>= "v0.14" & < "v0.15"} 19 "conf-libssl" 20 "ctypes" {>= "0.16.0" & < "0.18.0"} 21 "ctypes-foreign" 22 "dune" {>= "2.0.0"} 23 "dune-configurator" 24] 25synopsis: "An Async-pipe-based interface with OpenSSL" 26description: " 27This library allows you to create an SSL client and server, with 28encrypted communication between both. 29" 30url { 31 src: 32 "https://ocaml.janestreet.com/ocaml-core/v0.14/files/async_ssl-v0.14.0.tar.gz" 33 checksum: [ 34 "sha256=350de950db36df4b34523e91e09670b4aaa479d6c815df6d93671cd75afe94fd" 35 "md5=3b35d352c7f7927c4f91f96ef74e0417" 36 ] 37}