(lang dune 3.21)
(using mdx 0.4)
(name nox-jsonptr)
(source (tangled gazagnaire.org/ocaml-jsonptr))

(generate_opam_files true)
(implicit_transitive_deps false)

(license ISC)
(authors "Thomas Gazagnaire <thomas@gazagnaire.org>")
(maintainers "Thomas Gazagnaire <thomas@gazagnaire.org>")

(package
 (name nox-jsonptr)
 (synopsis "JSON Pointer token syntax (RFC 6901)")
 (tags (org:blacksun text codec))
 (description
  "The RFC 6901 JSON Pointer string syntax: token escaping (~0/~1), \
   pointer splitting, and array-index parsing. Value-type independent; \
   document cursors (JSON, YAML) layer their own traversal on top.")
 (depends
  (ocaml (>= 4.14))
  (mdx :with-test)
  (alcotest :with-test)
  (alcobar :with-test)))
