OCaml library for JSONfeed parsing and creation
1(lang dune 3.18)
2
3(name jsonfeed)
4
5(generate_opam_files true)
6
7(license ISC)
8(authors "Anil Madhavapeddy")
9(homepage "https://tangled.sh/@anil.recoil.org/ocaml-jsonfeed")
10(maintainers "Anil Madhavapeddy <anil@recoil.org>")
11(bug_reports "https://tangled.sh/@anil.recoil.org/ocaml-jsonfeed")
12(maintenance_intent "(latest)")
13
14(package
15 (name jsonfeed)
16 (synopsis "JSON Feed format parser and serializer for OCaml")
17 (description
18 "This library implements the JSON Feed specification (version 1.1) \
19 for OCaml. JSON Feed is a syndication format similar to RSS and Atom, \
20 but using JSON instead of XML. The library provides type-safe parsing \
21 and serialization using Jsonm and Ptime.")
22 (depends
23 (ocaml (>= 5.2.0))
24 (jsont (>= 0.2.0))
25 (ptime (>= 1.2.0))
26 bytesrw
27 (odoc :with-doc)
28 (alcotest (and :with-test (>= 1.5.0)))))