File tree Expand file tree Collapse file tree 5 files changed +169
-0
lines changed
liquid_interpreter/liquid_interpreter.0.1.3
liquid_ml/liquid_ml.0.1.3
liquid_parser/liquid_parser.0.1.3
liquid_std/liquid_std.0.1.3
liquid_syntax/liquid_syntax.0.1.3 Expand file tree Collapse file tree 5 files changed +169
-0
lines changed Original file line number Diff line number Diff line change 1+ opam-version: "2.0"
2+ synopsis: "The interpreter for Liquid"
3+ description: """
4+ The interpreter for Liquid
5+ """
6+ 7+ authors: ["Ben Faerber"]
8+ homepage: "https://github.com/benfaerber/liquid-ml"
9+ bug-reports: "https://github.com/benfaerber/liquid-ml/issues"
10+ dev-repo: "git+https://github.com/benfaerber/liquid-ml.git"
11+ license: "MIT"
12+ depends: [
13+ "ocaml" { >= "4.11" }
14+ "dune" { >= "2.5" }
15+ "base" { >= "v0.15.0" }
16+ "core" { >= "v0.15.0" }
17+ "stdio" { >= "v0.15.0" }
18+ "re2" { >= "v0.13.0" }
19+ "liquid_syntax" { = version }
20+ "liquid_parser" { = version }
21+ "liquid_std" { = version }
22+ ]
23+ build: [
24+ ["dune" "build" "-p" name "-j" jobs]
25+ ]
26+ url {
27+ src:
28+ "https://github.com/benfaerber/liquid-ml/archive/refs/tags/0.1.3.tar.gz"
29+ checksum: [
30+ "md5=2bf42dc30762bda4806678c999276208"
31+ "sha512=56605c10806de64f4c4207e94f7c8a5d06aa23b544d68f1ca976b5928dbba09e61257d74c6842e4c5d515ad6802f0419e4dd4132ca9c35c661dc03199da5f564"
32+ ]
33+ }
Original file line number Diff line number Diff line change 1+ opam-version: "2.0"
2+ synopsis: "Shopify's Liquid templating language in OCaml"
3+ description: """
4+ Shopify's Liquid templating language for OCaml!
5+ """
6+ 7+ authors: ["Ben Faerber"]
8+ homepage: "https://github.com/benfaerber/liquid-ml"
9+ bug-reports: "https://github.com/benfaerber/liquid-ml/issues"
10+ dev-repo: "git+https://github.com/benfaerber/liquid-ml.git"
11+ license: "MIT"
12+
13+ depends: [
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+ "alcotest" { >= "1.5.0" & with-test }
25+ ]
26+ build: [
27+ ["dune" "build" "-p" name "-j" jobs]
28+ ["dune" "runtest" "-p" name "-j" jobs] {with-test}
29+ ]
30+ url {
31+ src:
32+ "https://github.com/benfaerber/liquid-ml/archive/refs/tags/0.1.3.tar.gz"
33+ checksum: [
34+ "md5=2bf42dc30762bda4806678c999276208"
35+ "sha512=56605c10806de64f4c4207e94f7c8a5d06aa23b544d68f1ca976b5928dbba09e61257d74c6842e4c5d515ad6802f0419e4dd4132ca9c35c661dc03199da5f564"
36+ ]
37+ }
Original file line number Diff line number Diff line change 1+ opam-version: "2.0"
2+ synopsis: "The parser for Liquid"
3+ description: """
4+ The parser for Liquid
5+ """
6+ 7+ authors: ["Ben Faerber"]
8+ homepage: "https://github.com/benfaerber/liquid-ml"
9+ bug-reports: "https://github.com/benfaerber/liquid-ml/issues"
10+ dev-repo: "git+https://github.com/benfaerber/liquid-ml.git"
11+ license: "MIT"
12+
13+ depends: [
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+ ]
22+ build: [
23+ ["dune" "build" "-p" name "-j" jobs]
24+ ]
25+ url {
26+ src:
27+ "https://github.com/benfaerber/liquid-ml/archive/refs/tags/0.1.3.tar.gz"
28+ checksum: [
29+ "md5=2bf42dc30762bda4806678c999276208"
30+ "sha512=56605c10806de64f4c4207e94f7c8a5d06aa23b544d68f1ca976b5928dbba09e61257d74c6842e4c5d515ad6802f0419e4dd4132ca9c35c661dc03199da5f564"
31+ ]
32+ }
Original file line number Diff line number Diff line change 1+ opam-version: "2.0"
2+ synopsis: "The Standard Libarary for Liquid"
3+ description: """
4+ The Standard Libarary for Liquid
5+ """
6+ 7+ authors: ["Ben Faerber"]
8+ homepage: "https://github.com/benfaerber/liquid-ml"
9+ bug-reports: "https://github.com/benfaerber/liquid-ml/issues"
10+ dev-repo: "git+https://github.com/benfaerber/liquid-ml.git"
11+ license: "MIT"
12+ depends: [
13+ "ocaml" { >= "4.11" }
14+ "dune" { >= "2.5" }
15+ "base" { >= "v0.15.0" }
16+ "core" { >= "v0.15.0" }
17+ "stdio" { >= "v0.15.0" }
18+ "re2" { >= "v0.13.0" }
19+ "base64" { >= "3.5.1" }
20+ "sha" { >= "1.0" }
21+ "liquid_syntax" { = version }
22+ "liquid_parser" { = version }
23+ "liquid_syntax" { = version }
24+ ]
25+ build: [
26+ ["dune" "build" "-p" name "-j" jobs]
27+ ]
28+ url {
29+ src:
30+ "https://github.com/benfaerber/liquid-ml/archive/refs/tags/0.1.3.tar.gz"
31+ checksum: [
32+ "md5=2bf42dc30762bda4806678c999276208"
33+ "sha512=56605c10806de64f4c4207e94f7c8a5d06aa23b544d68f1ca976b5928dbba09e61257d74c6842e4c5d515ad6802f0419e4dd4132ca9c35c661dc03199da5f564"
34+ ]
35+ }
Original file line number Diff line number Diff line change 1+ opam-version: "2.0"
2+ synopsis: "The Syntax Definitions for Liquid"
3+ description: """
4+ The Syntax Definitions for Liquid
5+ """
6+ 7+ authors: ["Ben Faerber"]
8+ homepage: "https://github.com/benfaerber/liquid-ml"
9+ bug-reports: "https://github.com/benfaerber/liquid-ml/issues"
10+ dev-repo: "git+https://github.com/benfaerber/liquid-ml.git"
11+ license: "MIT"
12+ depends: [
13+ "ocaml" { >= "4.11" }
14+ "dune" { >= "2.5" }
15+ "base" { >= "v0.15.0" }
16+ "core" { >= "v0.15.0" }
17+ "stdio" { >= "v0.10.0" }
18+ "re2" { >= "v0.13.0" }
19+ "calendar" { >= "3.0.0" }
20+ "ppx_deriving" { >= "5.0" }
21+ ]
22+ build: [
23+ ["dune" "build" "-p" name "-j" jobs]
24+ ]
25+ url {
26+ src:
27+ "https://github.com/benfaerber/liquid-ml/archive/refs/tags/0.1.3.tar.gz"
28+ checksum: [
29+ "md5=2bf42dc30762bda4806678c999276208"
30+ "sha512=56605c10806de64f4c4207e94f7c8a5d06aa23b544d68f1ca976b5928dbba09e61257d74c6842e4c5d515ad6802f0419e4dd4132ca9c35c661dc03199da5f564"
31+ ]
32+ }
You can’t perform that action at this time.
0 commit comments