this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

[new release] swapfs (0.1.0)

CHANGES:

* First release! 🥳

+53
+53
packages/swapfs/swapfs.0.1.0/opam
··· 1 + opam-version: "2.0" 2 + synopsis: "Streaming temporary storage for Mirage OS" 3 + description: """ 4 + Append-only ephemeral, anonymous files. 5 + Swapfs is useful for temporarily putting large data on persistent storage, 6 + for example if the data is too large to comfortably sit in memory. 7 + The data can then be read back in chunks. 8 + """ 9 + maintainer: ["Robur Team <team@robur.coop>"] 10 + authors: ["Reynir Björnsson <reynir@reynir.dk>"] 11 + license: "MIT" 12 + tags: ["topics" "org:mirage" "org:robur" "swap"] 13 + homepage: "https://github.com/robur-coop/mirage-swapfs" 14 + doc: "https://robur-coop.github.io/mirage-swapfs/doc" 15 + bug-reports: "https://github.com/robur-coop/mirage-swapfs/issues" 16 + depends: [ 17 + "ocaml" {>= "4.14.0"} 18 + "dune" {>= "3.16" & >= "3.16.0"} 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 + ] 27 + conflicts: [ 28 + "result" {< "1.5"} 29 + ] 30 + build: [ 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 + ] 44 + dev-repo: "git+https://github.com/robur-coop/mirage-swapfs.git" 45 + url { 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 + } 53 + x-commit-hash: "38907bc693f99b532edc3e72e3192e34e78ad167"