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