My agentic slop goes here. Not intended for anyone else!
1version: "1.7.0"
2opam-version: "2.0"
3maintainer: "Romain Calascibetta <romain.calascibetta@gmail.com>"
4authors: [ "Romain Calascibetta"
5 "Christophe Troestler" ]
6license: "MIT"
7homepage: "https://github.com/Cumulus/Syndic"
8dev-repo: "git+https://github.com/Cumulus/Syndic.git"
9bug-reports: "https://github.com/Cumulus/Syndic/issues"
10doc: "https://cumulus.github.io/Syndic/"
11synopsis: "RSS1, RSS2, Atom and OPML1 parsing"
12description: """
13Pure OCaml Library for parsing and writing various types of
14feeds and subscriber lists."""
15
16build: [
17 [ "dune" "subst" ]
18 [ "dune" "build" "-p" name "-j" jobs ]
19 [ "dune" "runtest" "-p" name ] {with-test & ocaml:version >= "4.04.1"}
20]
21
22
23depends: [
24 "ocaml" {>= "4.03.0"}
25 "dune"
26 "ptime"
27 "uri" {>= "1.9"}
28 "xmlm" {>= "1.2.0"}
29 "fmt" {with-test}
30 "ocurl" {with-test}
31 "fpath" {with-test}
32 "ocplib-json-typed" {with-test}
33 "base-unix" {with-test}
34 "jsonm" {with-test}
35]