-
Notifications
You must be signed in to change notification settings - Fork 3
/
mrt-format.opam
30 lines (26 loc) · 1.1 KB
/
mrt-format.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
opam-version: "2.0"
maintainer: "Richard Mortier <[email protected]>"
authors: [ "Richard Mortier" ]
license: "ISC"
homepage: "https://github.com/mor1/mrt-format"
dev-repo: "git+https://github.com/mor1/mrt-format.git"
bug-reports: "https://github.com/mor1/mrt-format/issues"
doc: "https://mor1.github.io/mrt-format/"
build: [
[ "dune" "subst" ] {pinned}
[ "dune" "build" "-p" name "-j" jobs ]
[ "dune" "runtest" "-p" name "-j" jobs ] {with-test}
]
depends: [
"ocaml"
"dune" {>= "1.1.0" & build}
"alcotest" {with-test}
"cstruct" {>= "1.0.1"}
"ipaddr" {>= "2.0.0"}
"logs"
"ocamlfind" {build}
"ppx_cstruct" {build}
"result"
]
synopsis: "MRT parsing library and CLI"
description: "A basic implementation of the [Multi-Threaded Routing Toolkit](https://tools.ietf.org/html/rfc6396) format, following my implementation in the [Python Routeing Toolkit](https://github.com/mor1/pyrt) and documentation in the [RFC](https://tools.ietf.org/html/rfc6396) and the [PyRT README](https://github.com/mor1/pyrt/blob/master/README.mrtd). Provides (incomplete) parsing libraries and a simple CLI tool."