-
Notifications
You must be signed in to change notification settings - Fork 12
/
awa.opam
36 lines (34 loc) · 1.3 KB
/
awa.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
33
34
35
36
opam-version: "2.0"
maintainer: [ "Christiano F. Haesbaert <[email protected]>" "Hannes Mehnert <[email protected]>" "Reynir Björnsson <[email protected]>" "Romain Calascibetta <[email protected]>" "Pierre Alain <[email protected]>" ]
authors: [ "Christiano F. Haesbaert <[email protected]>" "Hannes Mehnert <[email protected]>" "Reynir Björnsson <[email protected]>" "Romain Calascibetta <[email protected]>" "Pierre Alain <[email protected]>" ]
license: "ISC"
homepage: "https://github.com/mirage/awa-ssh"
bug-reports: "https://github.com/mirage/awa-ssh/issues"
dev-repo: "git+https://github.com/mirage/awa-ssh.git"
doc: "https://mirage.github.io/awa-ssh/api"
build: [
["dune" "subst"] {dev}
["dune" "build" "-p" name "-j" jobs]
["dune" "runtest" "-p" name "-j" jobs] {with-test}
]
depends: [
"ocaml" {>= "4.10.0"}
"dune" {>= "2.7"}
"mirage-crypto" {>= "1.0.0"}
"mirage-crypto-rng" {>= "1.0.0"}
"mirage-crypto-pk"
"mirage-crypto-ec" {>= "1.0.0"}
"x509" {>= "1.0.0"}
"cstruct" {>= "6.0.0"}
"cstruct-unix"
"mtime" {>= "1.0.0"}
"logs"
"fmt"
"cmdliner" {>= "1.1.0"}
"base64" {>= "3.0.0"}
"zarith"
"eqaf" {>= "0.8"}
]
conflicts: [ "result" {< "1.5"} ]
synopsis: "SSH implementation in OCaml"
description: """The OpenSSH protocol implemented in OCaml."""