-
Notifications
You must be signed in to change notification settings - Fork 18
/
charrua.opam
45 lines (39 loc) · 1.43 KB
/
charrua.opam
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
opam-version: "2.0"
maintainer: "Christiano F. Haesbaert <haesbaert@haesbaert.org>"
authors: "Christiano F. Haesbaert <haesbaert@haesbaert.org>"
license: "ISC"
homepage: "https://github.com/mirage/charrua"
bug-reports: "https://github.com/mirage/charrua/issues"
dev-repo: "git+https://github.com/mirage/charrua.git"
doc: "https://mirage.github.io/charrua/"
build: [
["dune" "subst"] {dev}
["dune" "build" "-p" name "-j" jobs]
]
depends: [
"ocaml" {>= "4.08.0"}
"dune" {>= "1.4.0"}
"cstruct" {>= "6.0.0"}
"ipaddr" {>= "5.0.0"}
"macaddr" {>= "4.0.0"}
"ethernet" {>= "3.0.0"}
"tcpip" {>= "7.0.0"}
"ohex" {>= "0.2.0"}
]
conflicts: [ "result" {< "1.5"} ]
synopsis: "DHCP wire frame encoder and decoder"
description: """
Charrua consists a single modules, `Dhcp_wire` responsible for parsing and
constructing DHCP messages
You can browse the API for [charrua](http://www.github.com/mirage/charrua) at
https://mirage.github.io/charrua/
#### Features
* `Dhcp_wire` provides marshalling and unmarshalling utilities for DHCP.
* Logic/sequencing is agnostic of IO and platform, so it can run on Unix as a
process, as a Mirage unikernel or anything else.
* All DHCP options are supported at the time of this writing.
* Code is purely applicative.
* It's in OCaml, so it's pretty cool.
The name `charrua` is a reference to the, now extinct, semi-nomadic people of
southern South America.
"""