OCaml library for JSONfeed parsing and creation
1# This file is generated by dune, edit dune-project instead
2opam-version: "2.0"
3synopsis: "JSON Feed format parser and serializer for OCaml"
4description:
5 "This library implements the JSON Feed specification (version 1.1) for OCaml. JSON Feed is a syndication format similar to RSS and Atom, but using JSON instead of XML. The library provides type-safe parsing and serialization using Jsonm and Ptime."
6maintainer: ["Anil Madhavapeddy <anil@recoil.org>"]
7authors: ["Anil Madhavapeddy"]
8license: "ISC"
9homepage: "https://tangled.sh/@anil.recoil.org/ocaml-jsonfeed"
10bug-reports: "https://tangled.sh/@anil.recoil.org/ocaml-jsonfeed"
11depends: [
12 "dune" {>= "3.18"}
13 "ocaml" {>= "5.2.0"}
14 "jsont" {>= "0.2.0"}
15 "ptime" {>= "1.2.0"}
16 "bytesrw"
17 "odoc" {with-doc}
18 "alcotest" {with-test & >= "1.5.0"}
19]
20build: [
21 ["dune" "subst"] {dev}
22 [
23 "dune"
24 "build"
25 "-p"
26 name
27 "-j"
28 jobs
29 "@install"
30 "@runtest" {with-test}
31 "@doc" {with-doc}
32 ]
33]
34x-maintenance-intent: ["(latest)"]
35dev-repo: "git+https://tangled.sh/@anil.recoil.org/ocaml-jsonfeed"