this repo has no description
1opam-version: "2.0" 2synopsis: "Streaming temporary storage for Mirage OS" 3description: """ 4Append-only ephemeral, anonymous files. 5Swapfs is useful for temporarily putting large data on persistent storage, 6for example if the data is too large to comfortably sit in memory. 7The data can then be read back in chunks. 8""" 9maintainer: ["Robur Team <team@robur.coop>"] 10authors: ["Reynir Björnsson <reynir@reynir.dk>"] 11license: "MIT" 12tags: ["org:mirage" "org:robur" "swap"] 13homepage: "https://github.com/robur-coop/mirage-swapfs" 14doc: "https://robur-coop.github.io/mirage-swapfs/doc" 15bug-reports: "https://github.com/robur-coop/mirage-swapfs/issues" 16depends: [ 17 "ocaml" {>= "4.14.0"} 18 "dune" {>= "3.16"} 19 "logs" 20 "mirage-block" {>= "3.0.0"} 21 "lwt" {>= "5.7.0"} 22 "cstruct" {>= "6.0.0"} 23 "alcotest" {with-test & >= "1.0.0"} 24 "alcotest-lwt" {with-test & >= "1.0.0"} 25 "odoc" {with-doc} 26] 27conflicts: [ 28 "result" {< "1.5"} 29] 30build: [ 31 ["dune" "subst"] {dev} 32 [ 33 "dune" 34 "build" 35 "-p" 36 name 37 "-j" 38 jobs 39 "@install" 40 "@runtest" {with-test} 41 "@doc" {with-doc} 42 ] 43] 44dev-repo: "git+https://github.com/robur-coop/mirage-swapfs.git" 45url { 46 src: 47 "https://github.com/robur-coop/mirage-swapfs/releases/download/v0.1.0/swapfs-0.1.0.tbz" 48 checksum: [ 49 "sha256=76f5fe543f39c6ceec8124382125676bf22bb748cdc45f8736d2af6e10c73c7f" 50 "sha512=f9c60123ad49a78319ac51eba4e1a16a1164c22ff24ccde1e0a06c51a79d694f159a7303a84a43dae092e36d51b70fc80fc3d239d56983eb352d32463c44e8f6" 51 ] 52} 53x-commit-hash: "38907bc693f99b532edc3e72e3192e34e78ad167"