this repo has no description
0
fork

Configure Feed

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

Merge pull request #19369 from dmbaturin/opam-publish-otoml.0.9.1

Package otoml.0.9.1

authored by

Marcello Seri and committed by
GitHub
e5c714fc d0618953

+32
+32
packages/otoml/otoml.0.9.1/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 + ] 24 + build: ["dune" "build" "-p" name "-j" jobs] 25 + dev-repo: "git+https://github.com/dmbaturin/otoml.git" 26 + url { 27 + src: "https://github.com/dmbaturin/otoml/archive/refs/tags/0.9.1.tar.gz" 28 + checksum: [ 29 + "md5=0369a4f615ad2bf86abd84467588f948" 30 + "sha512=4986ea5890d9d970122850a42951f5a81002108f758199e8c44ad25e779a90ea7425b574523fdc82db50ef2ddd290eeee5cf017f2f5fad7da65e96f277ec6b64" 31 + ] 32 + }