this repo has no description
1opam-version: "2.0"
2synopsis: "DHCP client implementation"
3description: """\
4charrua-client is a DHCP client powered by [charrua](https://github.com/mirage/charrua).
5
6The base library exposes a simple state machine in `Dhcp_client`
7for use in acquiring a DHCP lease."""
8maintainer: "Mindy Preston"
9authors: "Mindy Preston"
10license: "ISC"
11tags: "org:mirage"
12homepage: "https://github.com/mirage/charrua"
13doc: "https://docs.mirage.io"
14bug-reports: "https://github.com/mirage/charrua/issues"
15depends: [
16 "dune" {>= "1.4.0"}
17 "ocaml" {>= "4.08.0"}
18 "alcotest" {with-test}
19 "cstruct-unix" {with-test}
20 "mirage-random-test" {with-test & >= "0.1.0"}
21 "charrua-server" {= version & with-test}
22 "charrua" {= version}
23 "cstruct" {>= "3.0.2"}
24 "ipaddr" {>= "5.0.0"}
25 "macaddr" {>= "4.0.0"}
26 "mirage-random" {>= "2.0.0" & < "4.0.0"}
27 "mirage-clock" {>= "3.0.0"}
28 "mirage-time" {>= "2.0.0"}
29 "mirage-net" {>= "3.0.0"}
30 "mirage-protocols" {>= "4.0.0"}
31 "duration"
32 "logs"
33 "fmt"
34 "lwt" {>= "4.0.0"}
35 "tcpip" {>= "6.1.0" & with-test}
36]
37build: [
38 ["dune" "subst"] {dev}
39 ["dune" "build" "-p" name "-j" jobs]
40 ["dune" "runtest" "-p" name "-j" jobs] {with-test}
41]
42dev-repo: "git+https://github.com/mirage/charrua.git"
43x-commit-hash: "06a19fba3a1174c1f694b62d969f3d13a59edd08"
44url {
45 src:
46 "https://github.com/mirage/charrua/releases/download/v1.4.0/charrua-v1.4.0.tbz"
47 checksum: [
48 "sha256=7b51dbb887e3ddd26ad34245d2736239fd6d9b47a3700ada553930990d4e4263"
49 "sha512=bb88c2de0bea218a9d9c439a47c3fe67cfbee1ea7a5e41868206ea95aae6e39ef2217d587097c69194b92aab16154431bb94d2cf9910ab210100dab69f26b436"
50 ]
51}