objective categorical abstract machine language personal data server
65
fork

Configure Feed

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

Use dune package management

futurGH 8835b5d1 810318e2

+16 -3
+1
.gitignore
··· 2 2 _build 3 3 _boot 4 4 _test_boot 5 + dune.lock 5 6 6 7 .DS_Store 7 8 .vscode/
+7 -1
dune-project
··· 19 19 ocaml 20 20 dune 21 21 lwt 22 + (caqti (>= 1.9.0)) 23 + (caqti-driver-sqlite3 (>= 1.9.0)) 24 + (caqti-lwt (>= 1.9.0)) 22 25 (re (>= 1.13.2)) 23 26 (yojson (>= 3.0.0)) 24 27 (lwt_ppx (>= 5.9.1)) 25 28 (ppx_deriving_yojson (>= 3.9.1)) 29 + (ppx_rapper (>= 3.0.0)) 30 + (ppx_rapper_lwt (>= 3.0.0)) 26 31 (alcotest :with-test))) 27 32 28 33 (package ··· 33 38 ocaml 34 39 dune 35 40 lwt 36 - (core_unix (>= 0.17.1)) 41 + (core_unix (>= 0.16.0)) 37 42 (re (>= 1.13.2)) 38 43 (yojson (>= 3.0.0)) 39 44 (lwt_ppx (>= 5.9.1)) ··· 50 55 dune 51 56 lwt 52 57 (digestif (>= 1.2.0)) 58 + (multibase (>= 0.1.0)) 53 59 (yojson (>= 3.0.0)) 54 60 (lwt_ppx (>= 5.9.1)) 55 61 (alcotest :with-test)))
+2 -1
ipld.opam
··· 10 10 depends: [ 11 11 "ocaml" 12 12 "dune" {>= "3.14"} 13 + "lwt" 13 14 "digestif" {>= "1.2.0"} 14 - "lwt" 15 + "multibase" {>= "0.1.0"} 15 16 "yojson" {>= "3.0.0"} 16 17 "lwt_ppx" {>= "5.9.1"} 17 18 "alcotest" {with-test}
+1 -1
mist.opam
··· 9 9 depends: [ 10 10 "ocaml" 11 11 "dune" {>= "3.14"} 12 - "core_unix" {>= "0.17.1"} 13 12 "lwt" 13 + "core_unix" {>= "0.16.0"} 14 14 "re" {>= "1.13.2"} 15 15 "yojson" {>= "3.0.0"} 16 16 "lwt_ppx" {>= "5.9.1"}
+5
pegasus.opam
··· 11 11 "ocaml" 12 12 "dune" {>= "3.14"} 13 13 "lwt" 14 + "caqti" {>= "1.9.0"} 15 + "caqti-driver-sqlite3" {>= "1.9.0"} 16 + "caqti-lwt" {>= "1.9.0"} 14 17 "re" {>= "1.13.2"} 15 18 "yojson" {>= "3.0.0"} 16 19 "lwt_ppx" {>= "5.9.1"} 17 20 "ppx_deriving_yojson" {>= "3.9.1"} 21 + "ppx_rapper" {>= "3.0.0"} 22 + "ppx_rapper_lwt" {>= "3.0.0"} 18 23 "alcotest" {with-test} 19 24 "odoc" {with-doc} 20 25 ]