OCaml codecs for the Citation File Format (CFF)
at main 30 lines 686 B view raw
1(lang dune 3.21) 2(name cff) 3 4(generate_opam_files true) 5 6(license ISC) 7(authors "Anil Madhavapeddy") 8(maintainers "Anil Madhavapeddy <anil@recoil.org>") 9(source (tangled anil.recoil.org/ocaml-cff)) 10 11(package 12 (name cff) 13 (synopsis "Citation File Format (CFF) codec for OCaml") 14 (description 15 "A library for parsing and generating CITATION.cff files following the \ 16 CFF 1.2.0 specification. Provides findlib subpackages: cff.unix for Unix \ 17 file I/O and cff.eio for Eio-based I/O.") 18 (depends 19 (ocaml (>= 5.1.0)) 20 ptime 21 ISO3166 22 spdx_licenses 23 jsont 24 yamlt 25 bytesrw 26 eio 27 bytesrw-eio 28 (odoc :with-doc) 29 (alcotest (and :with-test (>= 1.7.0))) 30 (eio_main :with-test)))