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/api"
9
10build: [
11 ["dune" "subst"] {dev}
12 ["dune" "build" "-p" name "-j" jobs]
13]
14
15depends: [
16 "dune" {>= "1.2"}
17 "ppx_sexp_conv" {>= "v0.10.0"}
18 "ppx_cstruct"
19 "ocaml" {>= "4.04.2"}
20 "cstruct" {>= "3.0.1"}
21 "sexplib"
22 "ipaddr" {>= "3.0.0" & < "4.0.0"}
23 "macaddr"
24 "ethernet" {>= "2.0.0" & < "3.0.0"}
25 "tcpip" {>= "3.7.0" & < "5.0.0"}
26 "rresult"
27]
28synopsis: "DHCP wire frame encoder and decoder"
29description: """
30Charrua consists a single modules, `Dhcp_wire` responsible for parsing and
31constructing DHCP messages
32
33You can browse the API for [charrua](http://www.github.com/mirage/charrua) at
34http://mirage.github.io/charrua/api
35
36#### Features
37
38* `Dhcp_wire` provides marshalling and unmarshalling utilities for DHCP.
39* Logic/sequencing is agnostic of IO and platform, so it can run on Unix as a
40 process, as a Mirage unikernel or anything else.
41* All DHCP options are supported at the time of this writing.
42* Code is purely applicative.
43* It's in OCaml, so it's pretty cool.
44
45The name `charrua` is a reference to the, now extinct, semi-nomadic people of
46southern South America.
47"""
48url {
49 src:
50 "https://github.com/mirage/charrua/releases/download/v1.0.0/charrua-v1.0.0.tbz"
51 checksum: [
52 "sha256=c318158366541be647cec9df9f3090879818f3257d274e13f466ed14311870b5"
53 "sha512=567889744d741572666952c6c4e02754da25dee4b32a9879b11a185aaefbf80e3aa08120cc2d1b141047a98c8f36e33b3a74b98055de529fa9743da016b1a63f"
54 ]
55}