this repo has no description
1opam-version: "2.0" 2maintainer: "Hannes Mehnert <hannes@mehnert.org>" 3authors: ["Hannes Mehnert <hannes@mehnert.org>"] 4homepage: "https://github.com/mirage/arp" 5doc: "https://mirage.github.io/arp/" 6dev-repo: "git+https://github.com/mirage/arp.git" 7bug-reports: "https://github.com/mirage/arp/issues" 8license: "ISC" 9depends: [ 10 "ocaml" {>= "4.06.0"} 11 "dune" {>= "2.7.0"} 12 "cstruct" {>= "6.0.0"} 13 "ipaddr" {>= "4.0.0"} 14 "macaddr" {>= "4.0.0"} 15 "logs" 16 "mirage-sleep" {>= "4.0.0"} 17 "lwt" 18 "duration" 19 "ethernet" {>= "3.0.0"} 20 "fmt" {>= "0.8.7"} 21 "alcotest" {with-test} 22 "mirage-vnetif" {with-test & >= "0.5.0"} 23 "bos" {with-test & >= "0.2.1"} 24] 25build: [ 26 ["dune" "subst"] {dev} 27 ["dune" "build" "-p" name "-j" jobs] 28 ["dune" "runtest" "-p" name "-j" jobs] {with-test & os != "macos"} 29] 30synopsis: "Address Resolution Protocol purely in OCaml" 31description: """ 32ARP is an implementation of the address resolution protocol (RFC826) purely in 33OCaml. It handles IPv4 protocol addresses and Ethernet hardware addresses only. 34""" 35x-maintenance-intent: [ "(latest)" ] 36url { 37 src: "https://github.com/mirage/arp/releases/download/v4.0.0/arp-4.0.0.tbz" 38 checksum: [ 39 "sha256=0b6061ff637066a0891227429e487044ca16dc0b1b42dbf074587d2222640da5" 40 "sha512=101e54c5de0c49ee91f07d4fbf381938689b5391d287609e3a0e98f2d8dc99b5801cfa0bb91da399c47e89305ba924b29801dbe1defb566f768cfbde96bbccc0" 41 ] 42} 43x-commit-hash: "8eec8d7a9f01ad3d992ea6582fdbe87666381520"