this repo has no description
1opam-version: "2.0" 2maintainer: "sheets@alum.mit.edu" 3authors: [ 4 "David Sheets" 5 "Anil Madhavapeddy" 6 "Hugo Heuzard" 7] 8license: "ISC" 9homepage: "https://github.com/mirage/ocaml-ipaddr" 10bug-reports: "https://github.com/mirage/ocaml-ipaddr/issues" 11dev-repo: "git+https://github.com/mirage/ocaml-ipaddr.git" 12doc: "https://mirage.github.io/ocaml-ipaddr/" 13 14tags: [ 15 "org:mirage" 16 "org:xapi-project" 17] 18 19build: [ 20 ["jbuilder" "subst" "-p" name] {dev} 21 ["jbuilder" "build" "-p" name "-j" jobs] 22 ["jbuilder" "runtest" "-p" name "-j" jobs] {with-test} 23] 24depends: [ 25 "ocaml" {>= "4.03.0" & < "5.0"} 26 "jbuilder" {>= "1.0+beta7"} 27 "base-bytes" 28 "ocaml-migrate-parsetree" {< "2.0.0"} 29 "ppx_sexp_conv" {>= "v0.9.0"} 30 "sexplib" 31 "ounit" {with-test} 32] 33depopts: [ "base-unix" ] 34synopsis: "IP (and MAC) address manipulation" 35description: """ 36A library for manipulation of IP (and MAC) address representations. 37 38Features: 39 40 * Depends only on sexplib (conditionalization under consideration) 41 * oUnit-based tests 42 * IPv4 and IPv6 support 43 * IPv4 and IPv6 CIDR prefix support 44 * IPv4 and IPv6 [CIDR-scoped address](http://tools.ietf.org/html/rfc4291#section-2.3) support 45 * `Ipaddr.V4` and `Ipaddr.V4.Prefix` modules are `Map.OrderedType` 46 * `Ipaddr.V6` and `Ipaddr.V6.Prefix` modules are `Map.OrderedType` 47 * `Ipaddr` and `Ipaddr.Prefix` modules are `Map.OrderedType` 48 * `Ipaddr_unix` in findlib subpackage `ipaddr.unix` provides compatibility with the standard library `Unix` module 49 * `Ipaddr_top` in findlib subpackage `ipaddr.top` provides top-level pretty printers (requires compiler-libs default since OCaml 4.0) 50 * IP address scope classification 51 * IPv4-mapped addresses in IPv6 (::ffff:0:0/96) are an embedding of IPv4 52 * MAC-48 (Ethernet) address support 53 * `Macaddr` is a `Map.OrderedType` 54 * All types have sexplib serializers/deserializers""" 55url { 56 src: 57 "https://github.com/mirage/ocaml-ipaddr/releases/download/2.8.0/ipaddr-2.8.0.tbz" 58 checksum: [ 59 "sha256=f27e93ea8b13083474cc995e37297ab6faf118f9381b2219aab972d0ae7e2886" 60 "md5=f3442867873b4b60d7860283ff98c3c8" 61 ] 62}