-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathswapfs.opam
46 lines (46 loc) · 1.22 KB
/
swapfs.opam
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
synopsis: "Streaming temporary storage for Mirage OS"
description: """
Append-only ephemeral, anonymous files.
Swapfs is useful for temporarily putting large data on persistent storage,
for example if the data is too large to comfortably sit in memory.
The data can then be read back in chunks.
"""
maintainer: ["Robur Team <[email protected]>"]
authors: ["Reynir Björnsson <[email protected]>"]
license: "MIT"
tags: ["org:mirage" "org:robur" "swap"]
homepage: "https://github.com/robur-coop/mirage-swapfs"
doc: "https://robur-coop.github.io/mirage-swapfs/doc"
bug-reports: "https://github.com/robur-coop/mirage-swapfs/issues"
depends: [
"dune" {>= "3.16"}
"ocaml" {>= "4.14.0"}
"logs"
"mirage-block" {>= "3.0.0"}
"lwt" {>= "5.7.0"}
"cstruct" {>= "6.0.0"}
"alcotest" {with-test & >= "1.0.0"}
"alcotest-lwt" {with-test & >= "1.0.0"}
"odoc" {with-doc}
]
conflicts: [
"result" {< "1.5"}
]
build: [
["dune" "subst"] {dev}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
]
dev-repo: "git+https://github.com/robur-coop/mirage-swapfs.git"
x-maintenance-intent: [ "(latest)" ]