-
Notifications
You must be signed in to change notification settings - Fork 188
/
vpnkit.opam
76 lines (74 loc) · 2.16 KB
/
vpnkit.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
72
73
74
75
76
version: "0.5.0"
opam-version: "2.0"
maintainer: "David Scott <[email protected]>"
authors: [
"Anil Madhavapeddy <[email protected]>"
"David Scott <[email protected]>"
"David Sheets <[email protected]>"
"Gaetan de Villele <[email protected]>"
"Ian Campbell <[email protected]>"
"Magnus Skjegstad <[email protected]>"
"Mindy Preston <[email protected]>"
"Sebastiaan van Stijn <[email protected]>"
"Thomas Gazagnaire <[email protected]>"
"Thomas Leonard <[email protected]>"
]
homepage: "https://github.com/moby/vpnkit"
bug-reports: "https://github.com/moby/vpnkit/issues"
dev-repo: "git+https://github.com/moby/vpnkit.git"
doc: "https://moby.github.io/vpnkit/"
build: [
["dune" "build" "-p" name "-j" jobs]
]
depends: [
"ocaml" {>="4.08.0"}
"dune" {>= "3.0"}
"alcotest" {with-test}
"ounit" {with-test}
"tar" {>= "1.0.1"}
"ipaddr" {>= "5.0.1"}
"lwt" {>= "5.4.0"}
"luv"
"luv_unix"
"tcpip" {>= "7.0.0"}
"base64" {>= "3.5.0"}
"cstruct" {>= "6.0.0"}
"pcap-format" {>= "0.4.0"}
"cmdliner" {< "1.1.0"}
"charrua" {>= "1.3.0"}
"charrua-client"
"charrua-server"
"hvsock" {>= "2.0.0"}
"fd-send-recv" {>= "2.0.0"}
"logs"
"fmt"
"astring"
"ethernet" {>= "3.0.0" & < "3.1.0"}
"arp" {>= "3.0.0"}
"mirage-entropy" {>= "0.5.0"}
"mirage-kv" {>= "4.0.0" & < "6.0.0"}
"mirage-net" {>= "4.0.0"}
"mirage-time" {>= "3.0.0"}
"mirage-channel" {>= "4.0.1"}
"mirage-stack"
"cohttp-lwt" {>= "0.99.0"}
"protocol-9p" {>= "2.0.0"}
"mirage-vnetif" {>= "0.5.0" & < "0.6.0"}
"io-page-unix"
"uuidm"
"ezjsonm" {>= "0.4.0"}
"sha" {with-test}
"stringext"
"mirage-clock" {>= "4.0.0"}
"mirage-clock-unix" {>= "4.0.0"}
"mirage-random" {>= "3.0.0"}
"mirage-random-stdlib"
"re" {>= "1.9.0"}
"ppx_inline_test"
]
synopsis: "VPN-friendly networking devices for HyperKit"
description: """
HyperKit is a hypervisor which runs on macOS using the "hypervisor.framework".
VPNKit implements a virtual ethernet device for HyperKit VMs in a VPN-friendly
way, by terminating and proxying all the TCP flows, caching and forwarding
DNS requests etc. HyperKit and VPNKit are used in Docker for Mac and Windows."""