RFC6901 JSON Pointer implementation in OCaml using jsont
1# This file is generated by dune, edit dune-project instead
2opam-version: "2.0"
3synopsis: "RFC 6901 JSON Pointer implementation for jsont"
4description:
5 "This library provides RFC 6901 JSON Pointer parsing, serialization, and evaluation compatible with jsont codecs. It also provides mutation operations suitable for implementing RFC 6902 JSON Patch."
6maintainer: ["Anil Madhavapeddy <anil@recoil.org>"]
7authors: ["Anil Madhavapeddy"]
8license: "ISC"
9homepage: "https://tangled.org/@anil.recoil.org/ocaml-json-pointer"
10bug-reports: "https://tangled.org/@anil.recoil.org/ocaml-json-pointer/issues"
11depends: [
12 "dune" {>= "3.20"}
13 "ocaml" {>= "4.14.0"}
14 "jsont" {>= "0.2.0"}
15 "bytesrw" {>= "0.2.0"}
16 "mdx"
17 "odoc" {with-doc}
18]
19build: [
20 ["dune" "subst"] {dev}
21 [
22 "dune"
23 "build"
24 "-p"
25 name
26 "-j"
27 jobs
28 "@install"
29 "@runtest" {with-test}
30 "@doc" {with-doc}
31 ]
32]
33x-maintenance-intent: ["(latest)"]