this repo has no description
1opam-version: "2.0" 2synopsis: "Shopify's Liquid templating language in OCaml" 3description: """ 4Shopify's Liquid templating language for OCaml! 5""" 6maintainer: "faerberbendev@protonmail.com" 7authors: ["Ben Faerber"] 8homepage: "https://github.com/benfaerber/liquid-ml" 9bug-reports: "https://github.com/benfaerber/liquid-ml/issues" 10dev-repo: "git+https://github.com/benfaerber/liquid-ml.git" 11license: "MIT" 12 13depends: [ 14 "ocaml" { >= "4.11" } 15 "dune" { >= "2.5" } 16 "base" { >= "v0.15.0" } 17 "core" { >= "v0.15.0" } 18 "stdio" { >= "v0.15.0" } 19 "re2" { >= "v0.13.0" } 20 "liquid_syntax" { = version } 21 "liquid_parser" { = version } 22 "liquid_std" { = version } 23 "liquid_interpreter" { = version } 24] 25build: [ 26 ["dune" "build" "-p" name "-j" jobs] 27] 28url { 29 src: 30 "https://github.com/benfaerber/liquid-ml/archive/refs/tags/0.1.1.tar.gz" 31 checksum: [ 32 "md5=c6069f115acdb3ba87cde7f8369bd5f0" 33 "sha512=7f282ee4ed50d1efaa280db10f5d2dda3142cc9e785c1f58b3d2a2631b2e1c2fea14dd761e8fb3cd158bb6eeaf5de3ef4f2f2cbc7307a4b8951bdf6e2119a584" 34 ] 35}