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-crypto-rng" {with-test & >= "1.0.0"}
21 "mirage-crypto-rng-lwt" {with-test & >= "1.0.0"}
22 "charrua-server" {= version & with-test}
23 "charrua" {= version}
24 "cstruct" {>= "6.0.0"}
25 "ipaddr" {>= "5.0.0"}
26 "macaddr" {>= "4.0.0"}
27 "mirage-crypto-rng-mirage" {>= "1.0.0" & < "2.0.0"}
28 "mirage-clock" {>= "3.0.0"}
29 "mirage-time" {>= "2.0.0"}
30 "mirage-net" {>= "3.0.0"}
31 "randomconv" {>= "0.2.0"}
32 "duration"
33 "logs"
34 "fmt"
35 "ethernet" {>= "3.0.0"}
36 "arp" {>= "3.0.0"}
37 "tcpip" {>= "8.1.0" & < "9.0.0"}
38 "lwt" {>= "4.0.0"}
39]
40build: [
41 ["dune" "subst"] {dev}
42 ["dune" "build" "-p" name "-j" jobs]
43 ["dune" "runtest" "-p" name "-j" jobs] {with-test}
44]
45dev-repo: "git+https://github.com/mirage/charrua.git"
46url {
47 src:
48 "https://github.com/mirage/charrua/releases/download/v1.6.0/charrua-1.6.0.tbz"
49 checksum: [
50 "sha256=1f6f7c1211a45ebbbd56a78b12fdbceaa98efae97ac3bd6f4855da47a3a3ac34"
51 "sha512=6ea3cb92efca7c33ee9aa1411223bec9045ece9939657594ebc47ae93408c4d87e8b40812751fc86555061d91ccd338b3fbcfe6059e1dd770303329b5e527a96"
52 ]
53}
54x-commit-hash: "9967d56b92d0a578656414ca7c94df52a42b7dab"