this repo has no description
1opam-version: "2.0" 2maintainer: ["Mindy Preston"] 3authors : ["Mindy Preston"] 4homepage: "https://github.com/mirage/charrua-core" 5bug-reports: "https://github.com/mirage/charrua-core/issues" 6dev-repo: "git+https://github.com/mirage/charrua-core.git" 7tags: [ "org:mirage"] 8doc: "https://docs.mirage.io" 9 10build: [ 11 ["jbuilder" "subst" "-n" name] {dev} 12 ["jbuilder" "build" "-p" name "-j" jobs] 13 ["jbuilder" "runtest" "-p" name "-j" jobs] {with-test} 14] 15 16depends: [ 17 "jbuilder" {>= "1.0+beta9"} 18 "ocaml" {>= "4.04.2"} 19 "alcotest" {with-test} 20 "cstruct-unix" {with-test} 21 "charrua-core" {>= "0.11.0" & < "0.12.0"} 22 "charrua-client" {>= "0.11.0" & < "0.12.0"} 23 "cstruct" {>= "3.0.2"} 24 "ipaddr" {< "3.0.0"} 25 "rresult" 26 "mirage-random" {>= "1.0.0" & < "2.0.0"} 27 "duration" 28 "mirage-time-lwt" 29 "logs" 30 "tcpip" {>= "3.2.0" & < "3.6.0"} 31 "fmt" 32 "lwt" 33 "mirage-types-lwt" {>= "3.0.0" & < "3.7.0"} 34] 35synopsis: "A DHCP client using lwt as effectful layer" 36description: """ 37`charrua-client-lwt` extends `charrua-client` with a functor `Dhcp_client_lwt`, 38using the provided modules for timing and networking logic, 39for convenient use by a program which might wish to implement a full client. 40""" 41 42url { 43 src: 44 "https://github.com/mirage/charrua-core/releases/download/v0.11.0/charrua-core-0.11.0.tbz" 45 checksum: [ 46 "sha256=74357da2ada057059592196594cf87d0514d09de15fe86ae321074726e07a876" 47 "md5=f4bb1ac3d1443a576982eae49d0eb7d8" 48 ] 49} 50available: opam-version >= "2.2.0" 51flags: [deprecated]