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.15" & < "v0.16"} 15 "base" {>= "v0.15" & < "v0.16"} 16 "core" {>= "v0.15" & < "v0.16"} 17 "ppx_jane" {>= "v0.15" & < "v0.16"} 18 "stdio" {>= "v0.15" & < "v0.16"} 19 "conf-libssl" 20 "ctypes" {>= "0.18.0"} 21 "ctypes-foreign" {>= "0.18.0"} 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 { 31src: "https://ocaml.janestreet.com/ocaml-core/v0.15/files/async_ssl-v0.15.0.tar.gz" 32checksum: "sha256=f218af427d80afa63a90e0d1ba04550256f28393ac9d79ec59a8ab52e1f7f508" 33}