this repo has no description
1opam-version: "2.0" 2synopsis: "CLI for Mustache logic-less templates" 3description: """ 4 5Command line utility `mustache-ocaml` for driving logic-less templates. 6Read and write mustache templates, and render them by providing a json object. 7""" 8maintainer: ["Rudi Grinberg <me@rgrinerg.com>"] 9authors: [ 10 "Rudi Grinberg <me@rgrinberg.com>" 11 "Armaël Guéneau <armael.gueneau@ens-lyon.fr>" 12 "Gabriel Scherer <gabriel.scherer@gmail.com>" 13] 14license: "MIT" 15homepage: "https://github.com/rgrinberg/ocaml-mustache" 16bug-reports: "https://github.com/rgrinberg/ocaml-mustache/issues" 17depends: [ 18 "dune" {>= "2.7"} 19 "ezjsonm" {with-test} 20 "jsonm" {>= "1.0.1"} 21 "mustache" {= version} 22 "cmdliner" {>= "1.1.0"} 23 "ocaml" {>= "4.08"} 24 "odoc" {with-doc} 25 "ounit2" {with-test} 26] 27build: [ 28 ["dune" "subst"] {dev} 29 [ 30 "dune" 31 "build" 32 "-p" 33 name 34 "-j" 35 jobs 36 "@install" 37 "@runtest" {with-test} 38 "@doc" {with-doc} 39 ] 40] 41dev-repo: "git+https://github.com/rgrinberg/ocaml-mustache.git" 42url { 43 src: 44 "https://github.com/rgrinberg/ocaml-mustache/releases/download/v3.3.0/mustache-3.3.0.tbz" 45 checksum: [ 46 "sha256=370b7eae6315f24d457d85c393aafe4a448a2b9c41d00ac0fa0dd1ac7728adfc" 47 "sha512=64795b0a0a2644961619cfdf43d9b5904181eb783ac1e5dc2a44c7bfb9ebf6fe9fb03bc1f31aa53a760b3ca6676b93d494e17b3f89f07c3cb3e4a85927cfbca2" 48 ] 49} 50x-commit-hash: "1d12af8eb7e60f7b84e20adfc39974ce8b672961"