This commit is contained in:
parent
e02c4a11a7
commit
98fab0c419
4 changed files with 12 additions and 15 deletions
14
.gitignore
vendored
14
.gitignore
vendored
|
|
@ -1,8 +1,8 @@
|
||||||
_build/
|
_build/
|
||||||
mirage/
|
unikernel/mirage/
|
||||||
dist/
|
unikernel/dist/
|
||||||
dune.build
|
unikernel/dune.build
|
||||||
dune.config
|
unikernel/dune.config
|
||||||
dune-project
|
unikernel/dune-project
|
||||||
dune-workspace
|
unikernel/dune-workspace
|
||||||
duniverse/
|
unikernel/duniverse/
|
||||||
|
|
|
||||||
3
src/dune
3
src/dune
|
|
@ -1,5 +1,4 @@
|
||||||
(library
|
(library
|
||||||
(wrapped false)
|
|
||||||
(name mte)
|
(name mte)
|
||||||
(public_name mte)
|
(wrapped false)
|
||||||
(libraries logs hxd.core hxd.string))
|
(libraries logs hxd.core hxd.string))
|
||||||
|
|
|
||||||
|
|
@ -5,8 +5,9 @@ type conn = Connect
|
||||||
|
|
||||||
let conn = typ Connect
|
let conn = typ Connect
|
||||||
|
|
||||||
let minipaf =
|
let mte =
|
||||||
main "Unikernel.Make"
|
main "Unikernel.Make"
|
||||||
|
~local_libs:[ "mte" ]
|
||||||
~packages:
|
~packages:
|
||||||
[
|
[
|
||||||
package "digestif"; package ~min:"0.0.9" "mimic-happy-eyeballs";
|
package "digestif"; package ~min:"0.0.9" "mimic-happy-eyeballs";
|
||||||
|
|
@ -38,5 +39,5 @@ let port = Runtime_arg.create ~pos:__POS__ "Unikernel.port"
|
||||||
let http_server = paf_server ~port tcpv4v6
|
let http_server = paf_server ~port tcpv4v6
|
||||||
|
|
||||||
let () =
|
let () =
|
||||||
register "minipaf"
|
register "mte"
|
||||||
[ minipaf $ certificates $ keys $ tcpv4v6 $ conn $ http_server ]
|
[ mte $ certificates $ keys $ tcpv4v6 $ conn $ http_server ]
|
||||||
|
|
|
||||||
|
|
@ -1,3 +0,0 @@
|
||||||
;; Generated by mirage.v4.10.3
|
|
||||||
|
|
||||||
(include dune.build)
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue