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" {>= "6.0.0"}
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 "duration"
31 "logs"
32 "fmt"
33 "ethernet" {>= "3.0.0"}
34 "arp" {>= "3.0.0"}
35 "tcpip" {>= "7.0.0" & < "8.2.0"}
36 "lwt" {>= "4.0.0"}
37]
38build: [
39 ["dune" "subst"] {dev}
40 ["dune" "build" "-p" name "-j" jobs]
41 ["dune" "runtest" "-p" name "-j" jobs] {with-test}
42]
43dev-repo: "git+https://github.com/mirage/charrua.git"
44url {
45 src:
46 "https://github.com/mirage/charrua/releases/download/v1.5.0/charrua-v1.5.0.tbz"
47 checksum: [
48 "sha256=4ce74a5e78402f3d645ddcb344aaa1348349a8d5a35b8b55112aff0cb84db8e1"
49 "sha512=ac6960de516642793b928224c95da997042d2907829496843481894b38804e3b465b5f9703bd8c02e5202059847ee5c16db6975c630b462448db511b39f34f87"
50 ]
51}
52x-commit-hash: "fb614f77b8f4cbd5f6409453a8f030b21d7e1a93"