RFC6901 JSON Pointer implementation in OCaml using jsont
1(lang dune 3.20)
2(using mdx 0.4)
3(using directory-targets 0.1)
4
5(name json-pointer)
6
7(generate_opam_files true)
8
9(license ISC)
10(authors "Anil Madhavapeddy")
11(homepage "https://tangled.org/@anil.recoil.org/ocaml-json-pointer")
12(maintainers "Anil Madhavapeddy <anil@recoil.org>")
13(bug_reports "https://tangled.org/@anil.recoil.org/ocaml-json-pointer/issues")
14(maintenance_intent "(latest)")
15
16(package
17 (name json-pointer)
18 (synopsis "RFC 6901 JSON Pointer implementation for jsont")
19 (description
20 "This library provides RFC 6901 JSON Pointer parsing, serialization, \
21 and evaluation compatible with jsont codecs. It also provides mutation \
22 operations suitable for implementing RFC 6902 JSON Patch.")
23 (depends
24 (ocaml (>= 4.14.0))
25 (jsont (>= 0.2.0))
26 (bytesrw (>= 0.2.0))
27 mdx
28 (odoc :with-doc)))