File tree Expand file tree Collapse file tree 5 files changed +174
-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 +174
-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+ x-maintenance-intent: ["(latest)"]
27+ url {
28+ src:
29+ "https://github.com/benfaerber/liquid-ml/archive/refs/tags/0.1.3.tar.gz"
30+ checksum: [
31+ "md5=24f974b1310954a4ee6202d659aafe96"
32+ "sha512=8cacca711ef271678118f2959dc734e677d54cd878b95fd2123ab4caa9d3d0dfd1fe17a59660ae1d59374bceca3063fdb1e18cc1018f2aca5283edd4ac97beed"
33+ ]
34+ }
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+ x-maintenance-intent: ["(latest)"]
31+ url {
32+ src:
33+ "https://github.com/benfaerber/liquid-ml/archive/refs/tags/0.1.3.tar.gz"
34+ checksum: [
35+ "md5=24f974b1310954a4ee6202d659aafe96"
36+ "sha512=8cacca711ef271678118f2959dc734e677d54cd878b95fd2123ab4caa9d3d0dfd1fe17a59660ae1d59374bceca3063fdb1e18cc1018f2aca5283edd4ac97beed"
37+ ]
38+ }
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+ x-maintenance-intent: ["(latest)"]
26+ url {
27+ src:
28+ "https://github.com/benfaerber/liquid-ml/archive/refs/tags/0.1.3.tar.gz"
29+ checksum: [
30+ "md5=24f974b1310954a4ee6202d659aafe96"
31+ "sha512=8cacca711ef271678118f2959dc734e677d54cd878b95fd2123ab4caa9d3d0dfd1fe17a59660ae1d59374bceca3063fdb1e18cc1018f2aca5283edd4ac97beed"
32+ ]
33+ }
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+ x-maintenance-intent: ["(latest)"]
29+ url {
30+ src:
31+ "https://github.com/benfaerber/liquid-ml/archive/refs/tags/0.1.3.tar.gz"
32+ checksum: [
33+ "md5=24f974b1310954a4ee6202d659aafe96"
34+ "sha512=8cacca711ef271678118f2959dc734e677d54cd878b95fd2123ab4caa9d3d0dfd1fe17a59660ae1d59374bceca3063fdb1e18cc1018f2aca5283edd4ac97beed"
35+ ]
36+ }
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+ x-maintenance-intent: ["(latest)"]
26+ url {
27+ src:
28+ "https://github.com/benfaerber/liquid-ml/archive/refs/tags/0.1.3.tar.gz"
29+ checksum: [
30+ "md5=24f974b1310954a4ee6202d659aafe96"
31+ "sha512=8cacca711ef271678118f2959dc734e677d54cd878b95fd2123ab4caa9d3d0dfd1fe17a59660ae1d59374bceca3063fdb1e18cc1018f2aca5283edd4ac97beed"
32+ ]
33+ }
You can’t perform that action at this time.
0 commit comments