this repo has no description

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

Package otoml.1.0.0

Kate 788ed58b d82d2f87

Changed files
+44
packages
otoml
otoml.1.0.0
+44
packages/otoml/otoml.1.0.0/opam
···
+
opam-version: "2.0"
+
synopsis:
+
"TOML parsing, manipulation, and pretty-printing library (1.0.0-compliant)"
+
description: """\
+
OTOML is a library for parsing, manipulating, and pretty-printing TOML files.
+
+
* Fully 1.0.0-compliant.
+
* No extra dependencies: default implementation uses native numbers and represents dates as strings.
+
* Provides a functor for building alternative implementations: plug your own bignum and calendar libraries if required.
+
* Informative parse error reporting.
+
* Pretty-printer offers flexible indentation options."""
+
maintainer: "daniil+opam@baturin.org"
+
authors: "Daniil Baturin <daniil@baturin.org>"
+
license: "MIT"
+
homepage: "https://github.com/dmbaturin/otoml"
+
bug-reports: "https://github.com/dmbaturin/otoml/issues"
+
depends: [
+
"ocaml" {>= "4.08.0"}
+
"menhir"
+
"menhirLib" {>= "20200525"}
+
"dune" {>= "2.0.0"}
+
"uutf" {>= "1.0.0"}
+
"ounit2" {with-test}
+
"odoc" {with-doc}
+
]
+
build: [
+
"dune"
+
"build"
+
"-p"
+
name
+
"-j"
+
jobs
+
"@install"
+
"@runtest" {with-test}
+
"@doc" {with-doc}
+
]
+
dev-repo: "git+https://github.com/dmbaturin/otoml.git"
+
url {
+
src: "https://github.com/dmbaturin/otoml/archive/refs/tags/1.0.0.tar.gz"
+
checksum: [
+
"md5=59d16c4e79c0e211336002df445c5299"
+
"sha512=fda1586f4f49bb48591e48751ac8156e19f9d7006ce04e2db112188ddbd6c8e20732cb58ff5993b723b3292bb6dae8bc5ddc78fcc27fded3be9237ae8aca59d8"
+
]
+
}