this repo has no description
1opam-version: "2.0"
2maintainer: [
3 "Stefanie Schirmer @linse"
4]
5authors: [
6 "Stefanie Schirmer @linse"
7 "Hannes Mehnert"
8]
9homepage: "https://github.com/roburio/mirage-fs-mem"
10doc: "https://roburio.github.io/mirage-fs-mem/"
11bug-reports: "https://github.com/roburio/mirage-fs-mem/issues"
12dev-repo: "git+https://github.com/roburio/mirage-fs-mem.git"
13tags: [ "org:mirage" "org:robur" ]
14license: "ISC"
15
16build: [
17 ["dune" "subst"] {dev}
18 ["dune" "build" "-p" name "-j" jobs]
19 ["dune" "runtest" "-p" name "-j" jobs] {with-test}
20]
21
22depends: [
23 "ocaml" {>= "4.05.0"}
24 "dune"
25 "alcotest" {with-test}
26 "mirage-fs-lwt"
27 "rresult"
28 "fpath"
29 "fmt"
30 "cstruct" {< "6.1.0"}
31]
32
33synopsis: "In-memory file system for for MirageOS"
34description: """
35Implements the mirage-fs interface, but does not provide a persistent data storage.
36Use for testing or amnesia.
37"""
38url {
39 src:
40 "https://github.com/roburio/mirage-fs-mem/releases/download/0.1.0/mirage-fs-mem-0.1.0.tbz"
41 checksum: [
42 "sha256=5f5d00ea16d6705b659f9f5933433f82d323ea6b62658fb9215112fc3c5cce01"
43 "md5=46c50e47e5085546beaa4afeebfc0637"
44 ]
45}
46post-messages: [
47 "This package will be retired in MirageOS 4.0. Please use mirage-kv (and mirage-kv-mem) instead."
48]
49flags: deprecated
50x-maintenance-intent: ["(none)"]