-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdune-project
36 lines (28 loc) · 943 Bytes
/
dune-project
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
(lang dune 3.16)
(name swapfs)
(generate_opam_files true)
(source
(github robur-coop/mirage-swapfs))
(authors "Reynir Björnsson <[email protected]>")
(maintainers "Robur Team <[email protected]>")
(license MIT)
(documentation https://robur-coop.github.io/mirage-swapfs/doc)
(package
(name swapfs)
(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.
)
(depends (ocaml (>= 4.14.0))
logs
(mirage-block (>= 3.0.0))
(lwt (>= 5.7.0))
(cstruct (>= 6.0.0))
(alcotest (and :with-test (>= 1.0.0)))
(alcotest-lwt (and :with-test (>= 1.0.0))))
(conflicts (result (< 1.5)))
(tags
(org:mirage org:robur swap)))