File tree Expand file tree Collapse file tree 1 file changed +44
-0
lines changed
packages/otoml/otoml.1.0.4 Expand file tree Collapse file tree 1 file changed +44
-0
lines changed Original file line number Diff line number Diff line change 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+ 13+ authors: "Daniil Baturin <
[email protected] >"
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.4.tar.gz"
40+ checksum: [
41+ "md5=1c502a7db858e7aea5847836eacf6f66"
42+ "sha512=7e837fae680b3453422fca23ecd2f72f4993c49b6864fce75df737b41127e569381f3c30e800dc7258ab972050551523b7b3f299d7e6b15cc505d69fcd79e137"
43+ ]
44+ }
You can’t perform that action at this time.
0 commit comments