crdt library in ocaml implementing json-joy
1# This file is generated by dune, edit dune-project instead
2opam-version: "2.0"
3version: "0.1.2"
4synopsis: "OCaml CRDT library compatible with json-joy"
5description:
6 "A full OCaml CRDT library implementing the json-joy specification. Includes JSON CRDT document model, patch operations, multiple codec formats, and JSON-Rx RPC for real-time synchronization."
7maintainer: ["Gabriel Díaz"]
8authors: ["Gabriel Díaz"]
9license: "ISC"
10tags: ["crdt" "json-crdt" "collaborative-editing" "json-joy" "ocaml"]
11homepage: "https://tangled.org/gdiazlo.tngl.sh/crdt"
12doc: "https://tangled.org/gdiazlo.tngl.sh/crdt"
13bug-reports: "https://tangled.org/gdiazlo.tngl.sh/crdt/issues"
14depends: [
15 "ocaml" {>= "5.2"}
16 "dune" {>= "3.20" & >= "3.20"}
17 "simdjsont" {>= "0.1.0"}
18 "base64" {>= "3.5"}
19 "alcotest" {with-test}
20 "odoc" {with-doc}
21]
22build: [
23 ["dune" "subst"] {dev}
24 [
25 "dune"
26 "build"
27 "-p"
28 name
29 "-j"
30 jobs
31 "@install"
32 "@runtest" {with-test}
33 "@doc" {with-doc}
34 ]
35]
36dev-repo: "git+https://tangled.org/gdiazlo.tngl.sh/crdt"
37x-maintenance-intent: ["(latest)"]