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.07.0"} 14 "async" {>= "v0.12" & < "v0.13"} 15 "base" {>= "v0.12" & < "v0.13"} 16 "core" {>= "v0.12" & < "v0.13"} 17 "ppx_jane" {>= "v0.12" & < "v0.13"} 18 "stdio" {>= "v0.12" & < "v0.13"} 19 "conf-libssl" 20 "ctypes" {< "0.18.0"} 21 "ctypes-foreign" 22 "dune" {>= "1.5.1"} 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.12/files/async_ssl-v0.12.0.tar.gz" 33 checksum: [ 34 "sha256=0daaa02ddf1f14c33aa1bcb4705e5c33adb6aee7531ad0872606abe58b8d049c" 35 "md5=985b54cf4e93704586dc0c85a3daae49" 36 ] 37}