-
Notifications
You must be signed in to change notification settings - Fork 9
/
miragevpn.opam
71 lines (65 loc) · 1.66 KB
/
miragevpn.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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
opam-version: "2.0"
synopsis: "Library implementing the OpenVPN protocol and configuration format"
name: "miragevpn"
homepage: "https://github.com/robur-coop/miragevpn"
dev-repo: "git+https://github.com/robur-coop/miragevpn.git"
bug-reports: "https://github.com/robur-coop/miragevpn/issues"
doc: "https://github.com/robur-coop/miragevpn/doc"
author: ["robur"]
maintainer: ["robur"]
license: "BSD-2-Clause"
build: [
["dune" "subst" ] {dev}
["dune" "build" "-p" name "-j" jobs]
["dune" "runtest" "-p" name "-j" jobs] {with-test}
]
depends: [
"dune" {>= "2.9"}
"ocaml" {>= "4.14.0"}
"odoc" {with-doc}
"fmt" { >= "0.8.7" }
"logs" { >= "0.6.2" }
"angstrom" { >= "0.14.0" }
"domain-name" { >= "0.2.0" }
"fmt"
"gmap" { >= "0.3.0" }
"ohex" { >= "0.2.0" }
"ipaddr" { >= "5.0.0" }
"decompress" { >= "1.5.3" }
"logs"
"lwt" {>= "5.7.0"}
"mirage-crypto" {>= "1.0.0"}
"mirage-crypto-rng" {>= "1.0.0"}
"ptime"
"tls" {>= "1.0.0"}
"dns-client" {>= "9.0.0"}
"x509" {>= "1.0.0"}
"duration"
"randomconv" {>= "0.2.0"}
"digestif" {>= "1.2.0"}
# app:
"mirage-crypto-rng-lwt" {>= "1.0.0"}
"mtime"
"dns-client-lwt" {>= "9.0.0"}
"tuntap" {>= "1.8.1"}
"base64" {>= "3.0.0"}
"hxd"
# mirage:
"dns-client-mirage" {>= "9.0.0"}
"tcpip" {>= "8.1.0"}
"mirage-crypto-rng-mirage" {>= "1.0.0"}
"mirage-clock" {>= "3.0.0"}
"cstruct" {>= "6.0.0"}
# tooling:
"cmdliner" { >= "1.1.0" }
"hxd"
"bos"
"crowbar" {with-test}
"alcotest" {with-test}
"bigstringaf" {with-test}
"notty" {with-test}
"bechamel" {with-test}
"bechamel-notty" {with-test}
# coverage
"bisect_ppx" {dev}
]