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+otoml@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.2.tar.gz" 40 checksum: [ 41 "md5=bc9a6dd42f5c0cf7b09cac9e890851e6" 42 "sha512=eccf90dcf49876aea0b4af166de681931dbbd2fec4b52e9b6116c53bf606d3c2bdc30e63d1c3ae761ec4ff099750eaf386c81d346db8d1b9ffbfc56aaa65b0bb" 43 ] 44}