RFC6901 JSON Pointer implementation in OCaml using jsont
at main 26 lines 684 B view raw
1(lang dune 3.21) 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(maintainers "Anil Madhavapeddy <anil@recoil.org>") 12(source (tangled anil.recoil.org/ocaml-json-pointer)) 13 14(package 15 (name json-pointer) 16 (synopsis "RFC 6901 JSON Pointer implementation for jsont") 17 (description 18 "This library provides RFC 6901 JSON Pointer parsing, serialization, \ 19 and evaluation compatible with jsont codecs. It also provides mutation \ 20 operations suitable for implementing RFC 6902 JSON Patch.") 21 (depends 22 (ocaml (>= 4.14.0)) 23 (jsont (>= 0.2.0)) 24 (bytesrw (>= 0.2.0)) 25 mdx 26 (odoc :with-doc)))