this repo has no description
1opam-version: "2.0" 2synopsis: 3 "TOML parsing, manipulation, and pretty-printing library (1.0.0-compliant)" 4description: """\ 5OTOML 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.""" 12maintainer: "daniil+opam@baturin.org" 13authors: "Daniil Baturin <daniil@baturin.org>" 14license: "MIT" 15homepage: "https://github.com/dmbaturin/otoml" 16bug-reports: "https://github.com/dmbaturin/otoml/issues" 17depends: [ 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] 26build: [ 27 "dune" 28 "build" 29 "-p" 30 name 31 "-j" 32 jobs 33 "@install" 34 "@runtest" {with-test} 35 "@doc" {with-doc} 36] 37dev-repo: "git+https://github.com/dmbaturin/otoml.git" 38url { 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}