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 "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" 43url { 44 src: 45 "https://github.com/mirage/charrua/releases/download/v1.4.1/charrua-v1.4.1.tbz" 46 checksum: [ 47 "sha256=39545b2b8c70df937fcb701b4d80aa52cf95a89ab96fed8e4422e52e9a97f979" 48 "sha512=6e399ab93f7306df1a96fb6690545de241cac2db93540d42c6ae08d9ba149a83061cb21a7bd7a2735fe7a8363c21a55773acbf969484c675e956257888a67f4f" 49 ] 50} 51x-commit-hash: "f0e7ecfc09bc87b00ee77812e7e181b9995a2e87"