forked from janestreet/async_ssl
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathasync_ssl.opam
More file actions
30 lines (30 loc) · 1.02 KB
/
async_ssl.opam
File metadata and controls
30 lines (30 loc) · 1.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
opam-version: "2.0"
version: "v0.14.0-o1labs"
maintainer: "leon@o1labs.org"
authors: ["Jane Street Group, LLC <opensource@janestreet.com>"]
homepage: "https://github.com/janestreet/async_ssl"
bug-reports: "https://github.com/janestreet/async_ssl/issues"
dev-repo: "git+https://github.com/janestreet/async_ssl.git"
doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/async_ssl/index.html"
license: "MIT"
build: [
["dune" "build" "-p" name "-j" jobs]
]
depends: [
"ocaml" {>= "4.08.0"}
"async" {>= "v0.14" & < "v0.15"}
"base" {>= "v0.14" & < "v0.15"}
"core" {>= "v0.14" & < "v0.15"}
"ppx_jane" {>= "v0.14" & < "v0.15"}
"stdio" {>= "v0.14" & < "v0.15"}
"conf-openssl"
"ctypes" {>= "0.16.0"}
"ctypes-foreign"
"dune" {>= "2.0.0"}
"dune-configurator"
]
synopsis: "An Async-pipe-based interface with OpenSSL"
description: "
This library allows you to create an SSL client and server, with
encrypted communication between both.
"