this repo has no description
1opam-version: "2.0" 2maintainer: "Christiano F. Haesbaert <haesbaert@haesbaert.org>" 3authors: "Christiano F. Haesbaert <haesbaert@haesbaert.org>" 4license: "ISC" 5homepage: "https://github.com/mirage/charrua" 6bug-reports: "https://github.com/mirage/charrua/issues" 7dev-repo: "git+https://github.com/mirage/charrua.git" 8doc: "https://mirage.github.io/charrua/" 9 10build: [ 11 ["dune" "subst"] {dev} 12 ["dune" "build" "-p" name "-j" jobs] 13] 14 15depends: [ 16 "ocaml" {>= "4.13.0"} 17 "dune" {>= "1.4.0"} 18 "cstruct" {>= "6.0.0"} 19 "ipaddr" {>= "5.0.0"} 20 "macaddr" {>= "4.0.0"} 21 "ethernet" {>= "3.0.0"} 22 "tcpip" {>= "9.0.0"} 23 "ohex" {>= "0.2.0"} 24 "fmt" {>= "0.9.0"} 25] 26conflicts: [ "result" {< "1.5"} ] 27synopsis: "DHCP wire frame encoder and decoder" 28description: """ 29Charrua consists a single modules, `Dhcp_wire` responsible for parsing and 30constructing DHCP messages 31 32You can browse the API for [charrua](http://www.github.com/mirage/charrua) at 33https://mirage.github.io/charrua/ 34 35#### Features 36 37* `Dhcp_wire` provides marshalling and unmarshalling utilities for DHCP. 38* Logic/sequencing is agnostic of IO and platform, so it can run on Unix as a 39 process, as a Mirage unikernel or anything else. 40* All DHCP options are supported at the time of this writing. 41* Code is purely applicative. 42* It's in OCaml, so it's pretty cool. 43 44The name `charrua` is a reference to the, now extinct, semi-nomadic people of 45southern South America. 46""" 47x-maintenance-intent: [ "(latest)" ] 48url { 49 src: 50 "https://github.com/mirage/charrua/releases/download/v2.0.0/charrua-2.0.0.tbz" 51 checksum: [ 52 "sha256=ecacfd0f17bdf2ba261049d2b3cc03aa473eec4a9d77b0a83c0ce2c402c512bb" 53 "sha512=9f24a36f934824581d5af9886bdd22e82a1ba0ce174d752d43de9b527392140c19b65a93b18b3ca07c441f84315fefff7002a71eebf573ce1b747e74de861a9d" 54 ] 55} 56x-commit-hash: "efb8f93144176662567c5e2f6332e9ff51057d3e"