this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Package otoml.1.0.5

+44
+44
packages/otoml/otoml.1.0.5/opam
··· 1 + opam-version: "2.0" 2 + synopsis: 3 + "TOML parsing, manipulation, and pretty-printing library (1.0.0-compliant)" 4 + description: """\ 5 + OTOML is a library for parsing, manipulating, and pretty-printing TOML files. 6 + 7 + * Fully 1.0.0-compliant. 8 + * No extra dependencies: default implementation uses native numbers and represents dates as strings. 9 + * Provides a functor for building alternative implementations: plug your own bignum and calendar libraries if required. 10 + * Informative parse error reporting. 11 + * Pretty-printer offers flexible indentation options.""" 12 + maintainer: "daniil+opam@baturin.org" 13 + authors: "Daniil Baturin <daniil+otoml@baturin.org>" 14 + license: "MIT" 15 + homepage: "https://github.com/dmbaturin/otoml" 16 + bug-reports: "https://github.com/dmbaturin/otoml/issues" 17 + depends: [ 18 + "ocaml" {>= "4.08.0"} 19 + "menhir" 20 + "menhirLib" {>= "20200525"} 21 + "dune" {>= "2.0.0"} 22 + "uutf" {>= "1.0.0"} 23 + "ounit2" {with-test} 24 + "odoc" {with-doc} 25 + ] 26 + build: [ 27 + "dune" 28 + "build" 29 + "-p" 30 + name 31 + "-j" 32 + jobs 33 + "@install" 34 + "@runtest" {with-test} 35 + "@doc" {with-doc} 36 + ] 37 + dev-repo: "git+https://github.com/dmbaturin/otoml.git" 38 + url { 39 + src: "https://github.com/dmbaturin/otoml/archive/refs/tags/1.0.5.tar.gz" 40 + checksum: [ 41 + "md5=14440749c58af89eeb8e10b69fea896b" 42 + "sha512=a287bf40ec7bc1458fa74bf88cd30c2f93e0092f962858fa70acdb0e01978cd187cb1135aef66a5b5775cce31353901516ecdb6822a4c29a0a99f077f30a2149" 43 + ] 44 + }