-
Notifications
You must be signed in to change notification settings - Fork 1
/
opam
32 lines (32 loc) · 850 Bytes
/
opam
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
31
32
opam-version: "2.0"
name: "tlsclient"
maintainer: "Hannes Mehnert <[email protected]>"
authors: "Hannes Mehnert <[email protected]>"
license: "BSD2"
homepage: "https://github.com/hannesm/tlsclient"
bug-reports: "https://github.com/hannesm/tlsclient/issues"
depends: [
"ocaml" {>= "4.04.2"}
"ocamlfind" {build}
"ocamlbuild" {build}
"topkg" {build}
"tls" {>= "0.9.0"}
"x509" {>= "0.7.0"}
"lwt"
"sexplib"
"cmdliner"
"hex" {>= "0.2.0"}
"ptime"
"fmt"
"domain-name" {>= "0.3.0"}
"mirage-crypto-rng" {>= "0.7.0"}
"mirage-crypto-pk"
"logs"
]
build: ["ocaml" "pkg/pkg.ml" "build" "--pinned" "%{pinned}%"]
dev-repo: "git+https://github.com/hannesm/tlsclient.git"
synopsis: "A command-line TLS client"
description: """
A command-line TLS client, similar to `openssl -s_client` using the TLS
implementation native to OCaml.
"""