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