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.13" & < "v0.14"} 15 "base" {>= "v0.13" & < "v0.14"} 16 "core" {>= "v0.13" & < "v0.14"} 17 "ppx_jane" {>= "v0.13" & < "v0.14"} 18 "stdio" {>= "v0.13" & < "v0.14"} 19 "conf-libssl" 20 "ctypes" {>= "0.16.0" & < "0.18.0"} 21 "ctypes-foreign" 22 "dune" {>= "1.5.1"} 23 "dune-configurator" {!= "1.0.0"} 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: "https://github.com/janestreet/async_ssl/archive/v0.13.0.tar.gz" 32 checksum: [ 33 "sha256=36adf420c7f180cffcb1d2dc0d1b5d50059262ebb17fafd3281af450a19cf251" 34 "md5=9972b8befbb353988411b21a5632a974" 35 ] 36}