this repo has no description
0
fork

Configure Feed

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

Merge pull request #20321 from dmbaturin/opam-publish-otoml.1.0.0

Package otoml.1.0.0

authored by

Kate and committed by
GitHub
788ed58b d82d2f87

+44
+44
packages/otoml/otoml.1.0.0/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@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.0.tar.gz" 40 + checksum: [ 41 + "md5=59d16c4e79c0e211336002df445c5299" 42 + "sha512=fda1586f4f49bb48591e48751ac8156e19f9d7006ce04e2db112188ddbd6c8e20732cb58ff5993b723b3292bb6dae8bc5ddc78fcc27fded3be9237ae8aca59d8" 43 + ] 44 + }