this repo has no description
1opam-version: "2.0" 2maintainer: "anil@recoil.org" 3homepage: "https://github.com/mirage/mirage-tcpip" 4dev-repo: "git+https://github.com/mirage/mirage-tcpip.git" 5bug-reports: "https://github.com/mirage/mirage-tcpip/issues" 6doc: "https://mirage.github.io/mirage-tcpip/" 7authors: [ 8 "Anil Madhavapeddy" "Balraj Singh" "Richard Mortier" "Nicolas Ojeda Bar" 9 "Thomas Gazagnaire" "Vincent Bernardoff" "Magnus Skjegstad" "Mindy Preston" 10 "Thomas Leonard" "David Scott" "Gabor Pali" "Hannes Mehnert" "Haris Rotsos" 11 "Kia" "Luke Dunstan" "Pablo Polvorin" "Tim Cuthbertson" "lnmx" "pqwy" ] 12license: "ISC" 13tags: ["org:mirage"] 14 15build: [ 16 ["dune" "subst"] {dev} 17 ["dune" "build" "-p" name "-j" jobs] 18 ["dune" "runtest" "-p" name "-j" "1"] {with-test} 19] 20conflicts: [ "mirage-xen" {< "6.0.0"} ] 21depends: [ 22 "dune" {>= "2.7.0"} 23 "bisect_ppx" {dev & >= "2.5.0"} 24 "ocaml" {>= "4.06.0"} 25 "rresult" {>= "0.5.0"} 26 "cstruct" {>= "3.2.0" & < "6.1.0"} 27 "cstruct-lwt" 28 "mirage-net" {>= "3.0.0"} 29 "mirage-clock" {>= "3.0.0"} 30 "mirage-random" {>= "2.0.0" & < "4.0.0"} 31 "mirage-stack" {>= "2.2.0" & < "4.0.0"} 32 "mirage-protocols" {>= "5.0.0" & < "6.0.0"} 33 "mirage-time" {>= "2.0.0"} 34 "ipaddr" {>= "5.0.0"} 35 "macaddr" {>="4.0.0"} 36 "macaddr-cstruct" 37 "mirage-profile" {>= "0.5"} 38 "fmt" {>= "0.8.0"} 39 "lwt" {>= "4.0.0"} 40 "lwt-dllist" 41 "logs" {>= "0.6.0"} 42 "duration" 43 "randomconv" {< "0.2.0"} 44 "ethernet" {>= "2.0.0" & < "3.0.0"} 45 "mirage-flow" {>= "2.0.0" & < "4.0.0"} 46 "mirage-vnetif" {with-test & >= "0.5.0" & < "0.6.2"} 47 "alcotest" {with-test & >="0.8.1" & < "1.4.0"} 48 "pcap-format" {with-test} 49 "mirage-clock-unix" {with-test & >= "3.0.0"} 50 "mirage-random-test" {with-test & >= "0.1.0"} 51 "arp" {with-test & >= "2.3.0"} 52 "ipaddr-cstruct" {with-test} 53 "lru" {>= "0.3.0"} 54] 55synopsis: "OCaml TCP/IP networking stack, used in MirageOS" 56description: """ 57`mirage-tcpip` provides a networking stack for the [Mirage operating 58system](https://mirage.io). It provides implementations for the following module types 59(which correspond with the similarly-named protocols): 60 61* IP (via the IPv4 and IPv6 modules) 62* ICMP 63* UDP 64* TCP 65""" 66x-commit-hash: "ca66fb27c52f4fbbc19562ff60595b6eceeaeaef" 67url { 68 src: 69 "https://github.com/mirage/mirage-tcpip/releases/download/v6.0.0/tcpip-v6.0.0.tbz" 70 checksum: [ 71 "sha256=1a2dbb275dcc84c0c97f876730fc130c7a023b579ce18a73fb83eff025d27971" 72 "sha512=a579972e298956fb71525e27f41125dcc574d198b386088d20ffb1f531fdcc8b170a39e8b7d944c56ab86dc2ecc1e2e94dc211dae1f728253900b94efb8d6132" 73 ] 74}