this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

[new release] textmate-language (0.4.0)

CHANGES:

- Rewrite handling of captures, previous version returned indices out of order

Alan Hu aecb00d2 cbef5a5f

+47
+47
packages/textmate-language/textmate-language.0.4.0/opam
··· 1 + opam-version: "2.0" 2 + synopsis: "Tokenizing code with TextMate grammars for syntax highlighting" 3 + description: """ 4 + 5 + This package provides functions for reading TextMate grammars and tokenizing 6 + code on a line-by-line basis. `textmate-language` can read grammars from the 7 + document types of the `plist-xml`, `ezjsonm`, and `yojson` libraries.""" 8 + maintainer: ["Alan Hu <alanh@ccs.neu.edu>"] 9 + authors: ["Alan Hu <alanh@ccs.neu.edu>"] 10 + license: "MIT" 11 + tags: ["highlighting"] 12 + homepage: "https://github.com/alan-j-hu/ocaml-textmate-language" 13 + bug-reports: "https://github.com/alan-j-hu/ocaml-textmate-language/issues" 14 + depends: [ 15 + "dune" {>= "2.7"} 16 + "oniguruma" {>= "0.1.2"} 17 + "ocaml" {>= "4.08"} 18 + "plist-xml" {>= "0.5" & with-test} 19 + "alcotest" {>= "1.4" & with-test} 20 + "ezjsonm" {>= "1.2" & with-test} 21 + "yojson" {>= "1.7" & < "2" & with-test} 22 + "odoc" {with-doc} 23 + ] 24 + build: [ 25 + ["dune" "subst"] {dev} 26 + [ 27 + "dune" 28 + "build" 29 + "-p" 30 + name 31 + "-j" 32 + jobs 33 + "@install" 34 + "@runtest" {with-test} 35 + "@doc" {with-doc} 36 + ] 37 + ] 38 + dev-repo: "git+https://github.com/alan-j-hu/ocaml-textmate-language.git" 39 + url { 40 + src: 41 + "https://github.com/alan-j-hu/ocaml-textmate-language/releases/download/0.4.0/textmate-language-0.4.0.tbz" 42 + checksum: [ 43 + "sha256=a88a57c9e8c1d09e2c889e4f400252cf24972db2d110989e2cd4985462b02908" 44 + "sha512=76aefecd6b7c72435e0e8a0098d80baa90e5be1b35dc46d2a79c748959678dd16ce614d8c11e554d780bb31dc6a92f3d03d719f8df1cfda60905cdcca908f289" 45 + ] 46 + } 47 + x-commit-hash: "bb5f2ae069d56afe02864f80151c7723eafcb73c"